Skip to content

Commit 72835e7

Browse files
authored
chore: fixed deprecation warning in release pipeline (#1072)
Signed-off-by: Sebastian Schuster <[email protected]>
1 parent 9ddb9fc commit 72835e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

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

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

0 commit comments

Comments
 (0)