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 56e4fc4 commit 8bf1868Copy full SHA for 8bf1868
.github/workflows/tagged_release.yml
@@ -33,7 +33,9 @@ jobs:
33
cache-dependency-path: '**/package-lock.json'
34
35
- name: Set tag version
36
- run: echo "tagVersion=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
+ run: |
37
+ echo "tagVersion=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
38
+ yq eval -i '.version = "${{ env.tagVersion }}"' documentation/js-sdk-guide/antora.yml
39
40
- name: Install Dependencies
41
run: npm install
documentation/js-sdk-guide/antora.yml
@@ -1,6 +1,6 @@
1
name: js-sdk-guide
2
title: JavaScript SDK
3
-version: 2.0.0
+version: main
4
start_page: ROOT:index.adoc
5
nav:
6
- modules/ROOT/nav.adoc
0 commit comments