Test workflows #621
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build PR preview | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- closed | |
# permissions: | |
# actions: read | |
concurrency: | |
group: preview-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-preview: | |
if: ${{ github.event.action != 'closed' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Python setup | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Build preview website | |
# builds to "site" directory by default | |
run: | | |
mkdir -p pr_preview | |
mkdocs build -f mkdocs.yml -d pr_preview/preview | |
- name: Save built preview website | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pr_preview | |
path: pr_preview/preview | |
deploy-preview: | |
needs: build-preview | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Python setup | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Download built preview website | |
uses: actions/download-artifact@v3 | |
with: | |
name: pr_preview | |
path: pr_preview | |
- name: Deploy preview | |
uses: access-nri/[email protected] | |
with: | |
source-dir: pr_preview | |
action: deploy | |
pr-number: ${{ github.event.number }} | |
close-preview: | |
if: ${{ github.event.action == 'closed' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Python setup | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Clean preview | |
uses: access-nri/[email protected] | |
with: | |
action: remove | |
pr-number: ${{ github.event.number }} | |