Fix deploy script to only stage listed public files
Prevents untracked files (output_test.txt, etc.) from being included.
This commit is contained in:
parent
d3113a9987
commit
d034fdaad0
1 changed files with 2 additions and 2 deletions
|
|
@ -79,8 +79,8 @@ skip { next }
|
||||||
{ print }
|
{ print }
|
||||||
' README.md > README.tmp && mv README.tmp README.md
|
' README.md > README.tmp && mv README.tmp README.md
|
||||||
|
|
||||||
# Stage and commit
|
# Stage only the public files (not untracked files on disk)
|
||||||
git add .
|
git add "${PUBLIC_FILES[@]}" README.md
|
||||||
git commit -m "$COMMIT_MSG
|
git commit -m "$COMMIT_MSG
|
||||||
|
|
||||||
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
|
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue