Skip to content
This repository was archived by the owner on Aug 4, 2025. It is now read-only.

Commit 6d4233e

Browse files
committed
chore: add --latest=false
1 parent fe257c4 commit 6d4233e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

scripts/create_release.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ TAG="${TAG?}"
1414
output=$(gh release delete "${TAG}" --cleanup-tag --yes 2>&1) || [[ "${output}" == "release not found" ]]
1515
echo "${output}"
1616

17-
# It would be nice if we could unmark the release as latest, but it
18-
# does not seem to be possible currently:
19-
# https://github.com/cli/cli/issues/6963
20-
gh release create "${TAG}" --title "${TAG}" --target main \
17+
gh release create "${TAG}" --title "${TAG}" --target main --latest=false \
2118
--notes "The original release notes can be found [here](https://github.com/koalaman/shellcheck/releases/tag/${TAG})." \
2219
dist/*

0 commit comments

Comments
 (0)