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 f0b1330 commit c435d59Copy full SHA for c435d59
.github/workflows/deploy-docs.yml
@@ -1,7 +1,8 @@
1
name: Deploy docs
2
on:
3
push:
4
- tags: [ v* ]
+ tags: ['v[0-9]+.*']
5
+ workflow_dispatch:
6
7
jobs:
8
deploy:
@@ -14,11 +15,11 @@ jobs:
14
15
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
16
- uses: ./.github/actions/setup
17
with:
- python-version: 3.13
18
+ python-version: 3.12
19
20
- run: pip install -e .[all] pdoc3
21
- run: time .github/scripts/build.sh
22
23
- env:
- GH_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
24
+ GH_PASSWORD: ${{ secrets.GH_PASSWORD }}
25
run: .github/scripts/deploy-gh-pages.sh
0 commit comments