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 64fbb42 + 02860bf commit b00e942Copy full SHA for b00e942
.github/workflows/publish.yml
@@ -9,6 +9,7 @@ on:
9
- release-v1.5.0
10
- release-v1.5.1
11
- release-v1.5.2
12
+ - release-v1.6.0
13
14
permissions:
15
contents: read
@@ -106,6 +107,17 @@ jobs:
106
107
rm -rf _work/venv
108
make vhtml
109
mv _build/html $HOME/output/v1.5.2
110
+ - uses: actions/checkout@v4
111
+ with:
112
+ fetch-depth: 0
113
+ ref: release-v1.6.0
114
+ - name: Build release-v1.6.0
115
+ run: |
116
+ export GITHUB_SHA=$(git rev-parse HEAD)
117
+ export GITHUB_SHA_REF=$(git rev-parse --abbrev-ref HEAD)
118
+ rm -rf _work/venv
119
+ make vhtml
120
+ mv _build/html $HOME/output/v1.6.0
121
- name: Deploy the docs
122
shell: bash
123
env:
0 commit comments