We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ddb9fc commit 72835e7Copy full SHA for 72835e7
.github/workflows/release.yml
@@ -45,7 +45,7 @@ jobs:
45
46
- name: Get tag name
47
id: get_tag_name
48
- run: echo ::set-output name=TAG::${GITHUB_REF#refs/tags/}
+ run: echo "name=TAG::${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
49
50
- name: Build release notes link
51
id: build-release-notes
@@ -55,7 +55,7 @@ jobs:
55
tmp=$(mktemp -d)
56
echo "[Release Notes](https://github.com/keycloak/terraform-provider-keycloak/blob/main/CHANGELOG.md#${releaseVersion}-${releaseDate})" > ${tmp}/release-notes.md
57
cat ${tmp}/release-notes.md
58
- echo ::set-output name=NOTES::${tmp}/release-notes.md
+ echo "name=NOTES::${tmp}/release-notes.md" >> $GITHUB_OUTPUT
59
60
- name: GoReleaser
61
uses: goreleaser/goreleaser-action@v6
0 commit comments