From bff5ba0a535e0adb0a006901de834d4ec61c722d Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Mon, 23 Sep 2024 17:41:33 +0100 Subject: [PATCH] Check in new files when rebuilding --- .github/workflows/rebuild.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rebuild.yml b/.github/workflows/rebuild.yml index b534a0915..c2dcb2c69 100644 --- a/.github/workflows/rebuild.yml +++ b/.github/workflows/rebuild.yml @@ -69,7 +69,8 @@ jobs: if [ ! -z "$(git status --porcelain)" ]; then git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" git config --global user.name "github-actions[bot]" - git commit -am "Rebuild" + git add --all + git commit -m "Rebuild" git push origin "HEAD:$BRANCH" echo "Pushed a commit to rebuild the Action." \ "Please mark the PR as ready for review to trigger PR checks." |