fix: use git add -f to force-add gitignored artifact dirs (dist/, bin/)

This commit is contained in:
Timothy Hofland
2026-03-15 22:55:20 +01:00
parent 407884e044
commit c731c4c698

View File

@ -317,7 +317,7 @@ echo "=== Pushing artifacts to remote ==="
cd "$REPO_DIR"
git config user.email "build-bot@mpvj" 2>/dev/null || true
git config user.name "MPVJ Build Bot" 2>/dev/null || true
git add frontend/dist/ bin/ofxPiMapper
git add -f frontend/dist/ bin/ofxPiMapper
git commit -m "ci: add pre-built artifacts (frontend/dist + bin/ofxPiMapper)" || echo "(nothing new to commit)"
git push