We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb52b77 commit e4fbf9fCopy full SHA for e4fbf9f
1 file changed
.github/workflows/deploy.yml
@@ -1,5 +1,8 @@
1
name: Deploy MkDocs site
2
3
+permissions:
4
+ contents: write
5
+
6
on:
7
push:
8
branches:
@@ -13,7 +16,14 @@ jobs:
13
16
- name: Checkout repository
14
17
uses: actions/checkout@v3
15
18
- - name: Deploy docs
- uses: mhausenblas/mkdocs-deploy-gh-pages@master
- env:
19
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: Set up Python
20
+ uses: actions/setup-python@v4
21
+ with:
22
+ python-version: '3.x'
23
24
+ - name: Install dependencies
25
+ run: |
26
+ pip install -r requirements.txt
27
28
+ - name: Build and deploy MkDocs site
29
+ run: mkdocs gh-deploy --force
0 commit comments