We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e99938 commit 833cf5fCopy full SHA for 833cf5f
.github/workflows/docs-publish.yml
@@ -0,0 +1,25 @@
1
+name: Deploy docs
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
+ workflow_dispatch:
7
8
+jobs:
9
+ docs:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ with:
14
+ fetch-depth: 0
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v4
17
18
+ python-version: '3.12'
19
+ - name: Install dependencies
20
+ run: |
21
+ python -m pip install --upgrade pip
22
+ pip install mkdocs mkdocs-gen-files
23
+ - run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
24
+ - name: Publish docs
25
+ run: mkdocs gh-deploy
0 commit comments