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 7fb4cb2 + 4af3181 commit f06e491Copy full SHA for f06e491
.github/workflows/publish.yml
@@ -10,6 +10,7 @@ on:
10
- release-v1.5.1
11
- release-v1.5.2
12
- release-v1.6.0
13
+ - release-v1.6.1
14
15
permissions:
16
contents: read
@@ -118,6 +119,17 @@ jobs:
118
119
rm -rf _work/venv
120
make vhtml
121
mv _build/html $HOME/output/v1.6.0
122
+ - uses: actions/checkout@v4
123
+ with:
124
+ fetch-depth: 0
125
+ ref: release-v1.6.1
126
+ - name: Build release-v1.6.1
127
+ run: |
128
+ export GITHUB_SHA=$(git rev-parse HEAD)
129
+ export GITHUB_SHA_REF=$(git rev-parse --abbrev-ref HEAD)
130
+ rm -rf _work/venv
131
+ make vhtml
132
+ mv _build/html $HOME/output/v1.6.1
133
- name: Deploy the docs
134
shell: bash
135
env:
0 commit comments