Skip to content

Commit

Permalink
fix(69): referencing output
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Reich committed Mar 4, 2025
1 parent 09db85c commit 0927dbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Print release tag name
run: |
echo "Release tag name: ${{ needs.semantic-release.outputs.RELEASE_TAG }}"
echo "Release tag name: ${{ needs.semantic-release.outputs.RELEASE_VERSION }}"
echo "Release tag name: ${{ steps.semantic-release.outputs.RELEASE_TAG }}"
echo "Release tag name: ${{ steps.semantic-release.outputs.RELEASE_VERSION }}"
- name: Build and push
uses: docker/build-push-action@v6
Expand Down
4 changes: 2 additions & 2 deletions .releaserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ plugins:
- "@semantic-release/github"
- - "@semantic-release/exec"
- successCmd: |
echo "RELEASE_VERSION=${nextRelease.version}" >> $GITHUB_OUTPUT
echo "RELEASE_TAG=${nextRelease.gitTag}" >> $GITHUB_OUTPUT
echo "RELEASE_VERSION=${nextRelease.version}" >> "$GITHUB_OUTPUT"
echo "RELEASE_TAG=${nextRelease.gitTag}" >> "$GITHUB_OUTPUT"
echo "setting env variables done"

0 comments on commit 0927dbb

Please sign in to comment.