Explicitly mark stable releases as latest

https://cli.github.com/manual/gh_release_create
This commit is contained in:
tooomm 2026-07-05 13:37:47 +02:00 committed by GitHub
parent 32e73da8c0
commit f976c8d46e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -87,6 +87,7 @@ jobs:
run: |
args=()
[[ "$PRERELEASE" == "true" ]] && args+=(--prerelease)
[[ "$PRERELEASE" == "false" ]] && args+=(--latest)
gh release create "$TAG_NAME" --verify-tag --draft "${args[@]}" \
--target "$TARGET" \