WIP Doc 2.0 #174
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: Deploy PR Preview | |
# Only run when a PR has the 'preview' label | |
on: | |
pull_request: | |
types: | |
- labeled | |
concurrency: preview-${{ github.ref }} | |
jobs: | |
build-and-deploy-preview: | |
if: github.event.label.name == 'preview' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install 🔧 | |
shell: bash | |
run: | | |
sudo apt-get install -y graphviz | |
pip3 install pipenv | |
pipenv sync | |
- name: Build 🛠 | |
shell: bash | |
run: pipenv run ./scripts/build.sh | |
- name: Deploy preview for Concordium Academy 🚀 | |
uses: rossjrw/pr-preview-action@v1 | |
with: | |
preview-branch: gh-pages | |
umbrella-dir: pr-preview-academy | |
custom-url: developer.concordium.software | |
source-dir: ./build-academy | |
action: deploy | |
- name: Deploy preview for Developer Documentation 🚀 | |
uses: rossjrw/pr-preview-action@v1 | |
with: | |
preview-branch: gh-pages | |
umbrella-dir: pr-preview | |
custom-url: developer.concordium.software | |
source-dir: ./build | |
action: deploy |