-
Notifications
You must be signed in to change notification settings - Fork 80
55 lines (45 loc) · 1.34 KB
/
redeploy.yaml
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
53
54
55
name: redeploy website
on:
push:
branches:
- master
jobs:
test-build:
runs-on: ubuntu-20.04
steps:
# Check out the code
- name: Checkout master branch
uses: actions/checkout@v4
# Set up Python environment
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Test building the website
- name: Build website
run: mkdocs build --strict
deploy:
runs-on: ubuntu-20.04
needs: test-build # This ensures that the deploy job runs after the test-build job completes
steps:
# Check out the code
- name: Checkout master branch
uses: actions/checkout@v4
# Set up Python environment
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Build and deploy the website
- name: Generate + deploy website
run: mkdocs gh-deploy --force