From eed55cbb0f01a6c67337fcfd01ceac9db061bdd6 Mon Sep 17 00:00:00 2001 From: Alan Wizemann Date: Fri, 17 Apr 2026 17:16:10 -0700 Subject: [PATCH] chore: Ignore release-artifact binaries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stops the release script's git-clean preflight from tripping on the zips + appcast-entry.xml that every release run produces under releases/v/. GitHub Releases hosts the actual downloads; there's no reason to commit ~30 MB of binaries per release into git history. RELEASE_NOTES.md stays tracked — it's committed as part of the version bump by the release script. Co-Authored-By: Claude Opus 4.6 --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index ae8594a..04bc48b 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,8 @@ scarf/standards/backups/ # Scarf project dashboards (user-specific) .scarf/ + +# Release artifacts — GitHub Releases hosts the binaries; no need to bloat git +# history. RELEASE_NOTES.md stays tracked (committed with the version bump). +releases/v*/*.zip +releases/v*/appcast-entry.xml