From cfde84f320e17baca49cf31b44dfc67dd5dab264 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Wed, 21 Oct 2020 15:13:59 -0400 Subject: [PATCH] Fix git add in DMAPI update action (#54505) Old command won't add new files. git hard. --- .github/workflows/update_tgs_dmapi.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update_tgs_dmapi.yml b/.github/workflows/update_tgs_dmapi.yml index dbea4d2bbc3..6fe53f700c2 100644 --- a/.github/workflows/update_tgs_dmapi.yml +++ b/.github/workflows/update_tgs_dmapi.yml @@ -29,7 +29,8 @@ jobs: run: | git config user.name tgstation-server git config user.email tgstation-server@users.noreply.github.com - git commit -a -m 'Update TGS DMAPI' + git add . + git commit -m 'Update TGS DMAPI' git push -f -u origin tgs-dmapi-update - name: Create Pull Request