Skip to content

Commit eea6f73

Browse files
committed
Remove dash from output name, fix step id, additional debug
Signed-off-by: Federico Busetti <[email protected]>
1 parent 53cede9 commit eea6f73

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build:
1111
outputs:
12-
docs-version: ${{ steps.docs-version.outputs.version }}
12+
version: ${{ steps.docs-version-step.outputs.version }}
1313
runs-on: ubuntu-latest
1414
permissions:
1515
contents: read
@@ -43,6 +43,7 @@ jobs:
4343
run: |
4444
./ci-scripts/docs-version.sh
4545
echo "Identified version: $(./ci-scripts/docs-version.sh)"
46+
echo "version=$(./ci-scripts/docs-version.sh)"
4647
echo "version=$(./ci-scripts/docs-version.sh)" >> $GITHUB_OUTPUT
4748
4849
publish:
@@ -80,6 +81,6 @@ jobs:
8081
permissions:
8182
contents: write
8283
with:
83-
site-version: ${{needs.build.outputs.docs-version}}
84+
site-version: ${{ needs.build.outputs.version }}
8485
version-alias: "stable"
8586
set-default: true

0 commit comments

Comments
 (0)