From c731c4c698b99b5d9d9cced665a3bf924ae34e69 Mon Sep 17 00:00:00 2001 From: Timothy Hofland Date: Sun, 15 Mar 2026 22:55:20 +0100 Subject: [PATCH] fix: use git add -f to force-add gitignored artifact dirs (dist/, bin/) --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 4d351f3..6aa030d 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -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