From 4016ec31eaeb93886ee6fbf98030156ce1e70f29 Mon Sep 17 00:00:00 2001 From: Harley Date: Mon, 14 Aug 2023 18:14:50 +0100 Subject: [PATCH] [exclc] Attempt to fix auto update Git interaction --- .github/workflows/auto-update.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 04d6f6c30..bd3688e04 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -13,7 +13,7 @@ jobs: update-version: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v2 - name: Write new version to gradle.properties file uses: Stuie/write-properties-file@1.0.1 with: @@ -24,7 +24,8 @@ jobs: run: | git config --global user.name 'Publish Action' git config --global user.email 'admin@harleyoconnor.com' - git commit -am "[exclc] Bump version to ${{ github.ref_name }}" + git add gradle.properties + git commit -m "[exclc] Bump version to ${{ github.ref_name }}" git push publish: