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 53cede9 commit eea6f73Copy full SHA for eea6f73
.github/workflows/release.yml
@@ -9,7 +9,7 @@ on:
9
jobs:
10
build:
11
outputs:
12
- docs-version: ${{ steps.docs-version.outputs.version }}
+ version: ${{ steps.docs-version-step.outputs.version }}
13
runs-on: ubuntu-latest
14
permissions:
15
contents: read
@@ -43,6 +43,7 @@ jobs:
43
run: |
44
./ci-scripts/docs-version.sh
45
echo "Identified version: $(./ci-scripts/docs-version.sh)"
46
+ echo "version=$(./ci-scripts/docs-version.sh)"
47
echo "version=$(./ci-scripts/docs-version.sh)" >> $GITHUB_OUTPUT
48
49
publish:
@@ -80,6 +81,6 @@ jobs:
80
81
82
contents: write
83
with:
- site-version: ${{needs.build.outputs.docs-version}}
84
+ site-version: ${{ needs.build.outputs.version }}
85
version-alias: "stable"
86
set-default: true
0 commit comments