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.
2 parents f70a4bf + b8a2ccf commit 709528aCopy full SHA for 709528a
.github/workflows/publish.yml
@@ -4,6 +4,7 @@ on:
4
branches:
5
- main
6
- release-v1.3.0
7
+ - release-v1.3.1
8
9
permissions:
10
contents: read
@@ -46,6 +47,17 @@ jobs:
46
47
rm -rf _work/venv
48
make vhtml
49
mv _build/html $HOME/output/v1.3.0
50
+ - uses: actions/checkout@v4
51
+ with:
52
+ fetch-depth: 0
53
+ ref: release-v1.3.1
54
+ - name: Build release-v1.3.1
55
+ run: |
56
+ export GITHUB_SHA=$(git rev-parse HEAD)
57
+ export GITHUB_SHA_REF=$(git rev-parse --abbrev-ref HEAD)
58
+ rm -rf _work/venv
59
+ make vhtml
60
+ mv _build/html $HOME/output/v1.3.1
61
- name: Deploy the docs
62
shell: bash
63
env:
0 commit comments