From df2cf84c6c3e6fa21646c3c634590c4c972ecba8 Mon Sep 17 00:00:00 2001 From: Weston Blieden <111699155+Mo3he@users.noreply.github.com> Date: Mon, 15 Dec 2025 12:23:57 +0100 Subject: [PATCH] Modify build.yml to limit git add to manifest files Only commit manifest files and ignore release artifacts. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1acf93d..8354d01 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -148,8 +148,8 @@ jobs: run: | git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" - - git add */app/manifest.json releases/* + # Only commit manifests; do not track release artifacts + git add */app/manifest.json if git diff --cached --quiet; then echo "No changes to commit" else