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 1271356 commit 687f474Copy full SHA for 687f474
.github/workflows/release_dev.yaml
@@ -13,10 +13,22 @@ jobs:
13
packages: write
14
steps:
15
- uses: actions/checkout@v4
16
- - name: Setup Go
17
- uses: actions/setup-go@v5
18
with:
19
- go-version: '1.22'
+ fetch-depth: 0
+
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: '22'
23
24
+ - name: Bump versions
25
+ run: |
26
+ LAST_TAG=$(git describe --tags --abbrev=0)
27
+ BASE_VERSION=${LAST_TAG#v}
28
+ FULL_SHA=$(git rev-parse HEAD)
29
+ VERSION="${BASE_VERSION}-dev+${FULL_SHA}"
30
+ cd web && npm version $VERSION --no-git-tag-version && cd ..
31
+ cd docs && npm version $VERSION --no-git-tag-version && cd ..
32
33
- name: Login to GHCR
34
uses: docker/login-action@v3
0 commit comments