We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f95d92 commit c0ca11dCopy full SHA for c0ca11d
1 file changed
.github/workflows/website.yml
@@ -3,7 +3,11 @@ name: website ⚙️
3
on:
4
push:
5
paths:
6
- - 'web/docs/**'
+ - 'web/**'
7
+
8
+defaults:
9
+ run:
10
+ working-directory: web
11
12
jobs:
13
build:
@@ -17,6 +21,6 @@ jobs:
17
21
- name: Install requirements 📦
18
22
run: |
19
23
python -m pip install --upgrade pip
20
- pip install mkdocs mkdocs-material
24
+ pip install -r requirements.txt
25
- name: Deploy 📦
- run: cd web && mkdocs gh-deploy --force -m 'update website'
26
+ run: mkdocs gh-deploy --strict --force --message 'update website via GitHub Actions'
0 commit comments