Keep build output out of the version bump commit

This commit is contained in:
Weston Blieden
2026-08-21 13:24:33 +02:00
parent 53240ed2ec
commit 437f7f9e40
+4 -1
View File
@@ -91,7 +91,10 @@ jobs:
set -euo pipefail
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add -A ':!releases'
# Packages are already uploaded as an artifact; removing them here
# keeps build output out of the commit regardless of .gitignore.
rm -rf releases
git add -A
if git diff --cached --quiet; then
echo "nothing to commit"
exit 0