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 6267e12 commit 1af5dd1Copy full SHA for 1af5dd1
.github/workflows/release-docs.yml
@@ -0,0 +1,22 @@
1
+name: Publish docs [release]
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+permissions:
8
+ contents: write
9
+jobs:
10
+ deploy:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 0
16
+ - uses: actions/setup-python@v5
17
18
+ python-version: 3.10.6
19
+ - name: Install Dependencies
20
+ run: pip install -r requirements.txt
21
+ - name: Build Docs Website
22
+ run: mike deploy --push --alias-type copy --update-aliases ${{ github.event.release.tag_name }} latest
requirements.txt
@@ -5,3 +5,4 @@ pymdown-extensions
pillow
cairosvg
mkdocs-enumerate-headings-plugin>=0.6.0
+mike
0 commit comments