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 d6fadbc commit 0c909fbCopy full SHA for 0c909fb
.github/workflows/publish.yml
@@ -5,6 +5,7 @@ on:
5
- main
6
- release-v1.3.0
7
- release-v1.3.1
8
+ - release-v1.4.0
9
10
permissions:
11
contents: read
@@ -58,6 +59,17 @@ jobs:
58
59
rm -rf _work/venv
60
make vhtml
61
mv _build/html $HOME/output/v1.3.1
62
+ - uses: actions/checkout@v4
63
+ with:
64
+ fetch-depth: 0
65
+ ref: release-v1.4.0
66
+ - name: Build release-v1.4.0
67
+ run: |
68
+ export GITHUB_SHA=$(git rev-parse HEAD)
69
+ export GITHUB_SHA_REF=$(git rev-parse --abbrev-ref HEAD)
70
+ rm -rf _work/venv
71
+ make vhtml
72
+ mv _build/html $HOME/output/v1.4.0
73
- name: Deploy the docs
74
shell: bash
75
env:
0 commit comments