-
Notifications
You must be signed in to change notification settings - Fork 35
52 lines (45 loc) · 1.31 KB
/
deploy-preview.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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