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 d659a36 commit ea79f12Copy full SHA for ea79f12
.github/workflows/docker-build-push.yml
@@ -128,10 +128,10 @@ jobs:
128
result-encoding: string
129
- name: Trigger Release
130
if: env.VERSION != '' && steps.check-release.outputs.result == 'undefined'
131
- # zizmor: ignore[archived-uses] only official release action
132
- uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1.1.4
133
env:
134
- GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
135
- with:
136
- release_name: ${{ env.VERSION }}
137
- tag_name: v${{ env.VERSION }}
+ GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
+ shell: bash
+ run: |
+ set -euo pipefail
+ IFS=$'\n\t'
+ gh release create --generate-notes "v${VERSION}" --title "${VERSION}"
0 commit comments