diff --git a/.github/workflows/rebuild.yml b/.github/workflows/rebuild.yml index b534a0915d..c2dcb2c690 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." |