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
parent acad7fb0ee
commit 6bbe50595c

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" \