From 63bbfe34b0971af759d151820d90549550bb036b Mon Sep 17 00:00:00 2001 From: Jack Sullivan Date: Sun, 24 Aug 2025 20:20:22 -0700 Subject: [PATCH] fix(gha): no commit during GitHub release --- scripts/release-github.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/scripts/release-github.sh b/scripts/release-github.sh index 0e0a5e7..78e668e 100755 --- a/scripts/release-github.sh +++ b/scripts/release-github.sh @@ -1,12 +1,15 @@ #!/bin/bash # This script is used to create a GitHub release. -# - Tag the commit and push it to GitHub. +# - Tag the commit and push the tag to GitHub. # - Create a GitHub release with assets. -# - Update the changelog. +# - Include the changelog in the release notes. set -euo pipefail uv run semantic-release version \ - --skip-build \ - --push + --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.