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 4a29c16 commit 94dd5dcCopy full SHA for 94dd5dc
.github/workflows/publish.yml
@@ -8,6 +8,7 @@ on:
8
- release-v1.4.0
9
- release-v1.5.0
10
- release-v1.5.1
11
+ - release-v1.5.2
12
13
permissions:
14
contents: read
@@ -94,6 +95,17 @@ jobs:
94
95
rm -rf _work/venv
96
make vhtml
97
mv _build/html $HOME/output/v1.5.1
98
+ - uses: actions/checkout@v4
99
+ with:
100
+ fetch-depth: 0
101
+ ref: release-v1.5.2
102
+ - name: Build release-v1.5.2
103
+ run: |
104
+ export GITHUB_SHA=$(git rev-parse HEAD)
105
+ export GITHUB_SHA_REF=$(git rev-parse --abbrev-ref HEAD)
106
+ rm -rf _work/venv
107
+ make vhtml
108
+ mv _build/html $HOME/output/v1.5.2
109
- name: Deploy the docs
110
shell: bash
111
env:
0 commit comments