From 41daf7becc408a067cce7550440bbd215a7cb41c Mon Sep 17 00:00:00 2001 From: Jordan Phillips Date: Sat, 13 Apr 2024 17:20:47 +1000 Subject: [PATCH] chore: add missing commit flags --- .github/actions/release/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/release/action.yml b/.github/actions/release/action.yml index d845ea4..9b6b2b6 100644 --- a/.github/actions/release/action.yml +++ b/.github/actions/release/action.yml @@ -47,7 +47,7 @@ runs: shell: bash run: | git checkout -b release/${{ steps.version.outputs.version }} - git commit -m 'chore(release): ${{ steps.version.outputs.version }}' + git commit -anm 'chore(release): ${{ steps.version.outputs.version }}' git tag ${{ steps.version.outputs.version }} git push origin release/${{ steps.version.outputs.version }} --tags --force