From 6bbe50595c85fdfea9a178a1e6e4500aaf0c74b2 Mon Sep 17 00:00:00 2001 From: tooomm Date: Sun, 5 Jul 2026 13:37:47 +0200 Subject: [PATCH] Explicitly mark stable releases as latest https://cli.github.com/manual/gh_release_create --- .github/workflows/desktop-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index 80c5308c5..2135040f2 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -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" \