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 fd472a1 + 53f4790 commit 9bb1a84Copy full SHA for 9bb1a84
.github/workflows/publish.yml
@@ -3,6 +3,7 @@ on:
3
push:
4
branches:
5
- main
6
+ - release-v1.3.0
7
8
permissions:
9
contents: read
@@ -34,6 +35,17 @@ jobs:
34
35
rm -rf _work/venv
36
make vhtml
37
mv _build/html $HOME/output/development
38
+ - uses: actions/checkout@v4
39
+ with:
40
+ fetch-depth: 0
41
+ ref: release-v1.3.0
42
+ - name: Build release-v1.3.0
43
+ run: |
44
+ export GITHUB_SHA=$(git rev-parse HEAD)
45
+ export GITHUB_SHA_REF=$(git rev-parse --abbrev-ref HEAD)
46
+ rm -rf _work/venv
47
+ make vhtml
48
+ mv _build/html $HOME/output/v1.3.0
49
- name: Deploy the docs
50
shell: bash
51
env:
0 commit comments