From f76e090ce5c56532ad708356942d490e5a9699b0 Mon Sep 17 00:00:00 2001 From: Jack Sullivan Date: Sun, 24 Aug 2025 20:37:25 -0700 Subject: [PATCH] fix(gha): fix GH release flags --- scripts/release-github.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/release-github.sh b/scripts/release-github.sh index 78e668e..200be8e 100755 --- a/scripts/release-github.sh +++ b/scripts/release-github.sh @@ -8,8 +8,8 @@ set -euo pipefail uv run semantic-release version \ - --skip-build \ # Built in another task. - --no-commit \ # Work with main branch protection settings. - --no-changelog \ # A changelog body will still be included in the release notes. - --push \ # Push the tag to GitHub (not a commit). - --vcs-release # Create a GitHub release. + --skip-build \ + --no-commit \ + --no-changelog \ + --push \ + --vcs-release