Skip to content

Commit

Permalink
chore: fixed deprecation warning in release pipeline (keycloak#1072)
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuster <sebastian.schuster@bosch.io>
  • Loading branch information
sschu authored Jan 14, 2025
1 parent 9ddb9fc commit 72835e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Get tag name
id: get_tag_name
run: echo ::set-output name=TAG::${GITHUB_REF#refs/tags/}
run: echo "name=TAG::${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT

- name: Build release notes link
id: build-release-notes
Expand All @@ -55,7 +55,7 @@ jobs:
tmp=$(mktemp -d)
echo "[Release Notes](https://github.com/keycloak/terraform-provider-keycloak/blob/main/CHANGELOG.md#${releaseVersion}-${releaseDate})" > ${tmp}/release-notes.md
cat ${tmp}/release-notes.md
echo ::set-output name=NOTES::${tmp}/release-notes.md
echo "name=NOTES::${tmp}/release-notes.md" >> $GITHUB_OUTPUT
- name: GoReleaser
uses: goreleaser/goreleaser-action@v6
Expand Down

0 comments on commit 72835e7

Please sign in to comment.