From 64f852e3f763143bde1c22e9edec1b7054b8fa20 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Fri, 12 Aug 2022 07:21:20 -0500 Subject: [PATCH] Update main_matrix.yml --- .github/workflows/main_matrix.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main_matrix.yml b/.github/workflows/main_matrix.yml index 3d378e27c..ea1d5376b 100644 --- a/.github/workflows/main_matrix.yml +++ b/.github/workflows/main_matrix.yml @@ -474,17 +474,17 @@ jobs: asset_name: debug-elfs-${{ steps.version.outputs.version }}.zip asset_content_type: application/zip - - name: Bump version + - name: Bump version.properties run: >- bin/bump_version.py - - name: Commit updated version.py + - name: Commit updated version.properties id: commit_updated run: | git config --global user.name 'thebentern' git config --global user.email 'benmmeadors@gmail.com' git remote set-url origin https://x-access-token:${{ secrets.ARTIFACTS_TOKEN }}@github.com/${{ github.repository }} git add version.properties - git commit -m "Bump version" && git push || echo "No changes to commit" + git commit -m "Bump version" && git push -f || echo "No changes to commit" git log -n 1 --pretty=format:"%H" | tail -n 1 | awk '{print "::set-output name=sha::"$0}'