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 10aaed2 + 1f2fcd4 commit e158630Copy full SHA for e158630
.github/workflows/publish.yml
@@ -6,6 +6,8 @@ on:
6
- release-v1.3.0
7
- release-v1.3.1
8
- release-v1.4.0
9
+ - release-v1.5.0
10
+ - release-v1.5.1
11
12
permissions:
13
contents: read
@@ -81,6 +83,17 @@ jobs:
81
83
rm -rf _work/venv
82
84
make vhtml
85
mv _build/html $HOME/output/v1.5.0
86
+ - uses: actions/checkout@v4
87
+ with:
88
+ fetch-depth: 0
89
+ ref: release-v1.5.1
90
+ - name: Build release-v1.5.1
91
+ run: |
92
+ export GITHUB_SHA=$(git rev-parse HEAD)
93
+ export GITHUB_SHA_REF=$(git rev-parse --abbrev-ref HEAD)
94
+ rm -rf _work/venv
95
+ make vhtml
96
+ mv _build/html $HOME/output/v1.5.1
97
- name: Deploy the docs
98
shell: bash
99
env:
0 commit comments