Skip to content

Commit

Permalink
Remove dash from output name, fix step id, additional debug
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Busetti <729029+febus982@users.noreply.github.com>
  • Loading branch information
febus982 committed Jan 17, 2024
1 parent 53cede9 commit eea6f73
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:
outputs:
docs-version: ${{ steps.docs-version.outputs.version }}
version: ${{ steps.docs-version-step.outputs.version }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -43,6 +43,7 @@ jobs:
run: |
./ci-scripts/docs-version.sh
echo "Identified version: $(./ci-scripts/docs-version.sh)"
echo "version=$(./ci-scripts/docs-version.sh)"
echo "version=$(./ci-scripts/docs-version.sh)" >> $GITHUB_OUTPUT
publish:
Expand Down Expand Up @@ -80,6 +81,6 @@ jobs:
permissions:
contents: write
with:
site-version: ${{needs.build.outputs.docs-version}}
site-version: ${{ needs.build.outputs.version }}
version-alias: "stable"
set-default: true

0 comments on commit eea6f73

Please sign in to comment.