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 2d019c5 commit 7e84eb2Copy full SHA for 7e84eb2
.github/workflows/release.yml
@@ -39,9 +39,11 @@ jobs:
39
retention-days: 1
40
41
- name: Export version for site docs
42
- id: docs-version
43
- run: echo "$(./ci-scripts/docs-version.sh)" >> "$GITHUB_OUTPUT"
44
-
+ id: docs-version-step
+ run: |
+ ./ci-scripts/docs-version.sh
45
+ echo "Identified version: $(./ci-scripts/docs-version.sh)"
46
+ echo "version=$(./ci-scripts/docs-version.sh)" >> $GITHUB_OUTPUT
47
48
publish:
49
runs-on: ubuntu-latest
ci-scripts/docs-version.sh
@@ -2,4 +2,4 @@
2
3
VERSION=$(poetry version -s)
4
SEMVER=( ${VERSION//./ } )
5
-echo "version=${SEMVER[0]}.${SEMVER[1]}"
+echo "${SEMVER[0]}.${SEMVER[1]}"
0 commit comments