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 1f3c1f4 commit 59718daCopy full SHA for 59718da
1 file changed
.github/workflows/release.yml
@@ -295,18 +295,19 @@ jobs:
295
"$DIST_DIR/bom.json"
296
- name: Create Release
297
env:
298
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GH_REPO: ${{ github.repository }}
299
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
300
R_PRERELEASE: ${{ github.event.inputs.prerelease }}
301
R_TITLE: ${{ needs.bump.outputs.version_plain }}
- R_VERSION: ${{ needs.bump.outputs.version }}
302
+ R_TAG: ${{ needs.bump.outputs.version }}
303
run: |
304
set -exu
305
prerelease_flag=""
306
if [ "$R_PRERELEASE" = "true" ]; then
307
prerelease_flag="--prerelease"
308
fi
309
gh release create \
- "$R_VERSION" \
310
+ "$R_TAG" --verify-tag \
311
$prerelease_flag \
312
--title "$R_TITLE" \
313
--notes "" \
0 commit comments