Fix deploy script to only stage listed public files

Prevents untracked files (output_test.txt, etc.) from being included.
This commit is contained in:
Eric Furst 2026-02-27 05:58:52 -05:00
commit d034fdaad0

View file

@ -79,8 +79,8 @@ skip { next }
{ print }
' README.md > README.tmp && mv README.tmp README.md
# Stage and commit
git add .
# Stage only the public files (not untracked files on disk)
git add "${PUBLIC_FILES[@]}" README.md
git commit -m "$COMMIT_MSG
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"