From c7924d60a862ce117a3d1dff3a2790c630234ca6 Mon Sep 17 00:00:00 2001 From: Marika Marszalkowski Date: Fri, 13 Sep 2024 11:02:50 +0200 Subject: [PATCH] Revert "gf" This reverts commit ac16b2cec2aacf0d53fe91460fe568f1abefbd41. --- .github/actions/commit-and-tag/action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/commit-and-tag/action.yml b/.github/actions/commit-and-tag/action.yml index bd21b5158f..a50e9d2c85 100644 --- a/.github/actions/commit-and-tag/action.yml +++ b/.github/actions/commit-and-tag/action.yml @@ -18,7 +18,7 @@ runs: git config --global user.name "$USER_NAME" git add -A git commit -m "v$VERSION" - git tag "v$VERSION" -m "v$TAG_MESSAGE" + git tag "v$VERSION" -m "v$VERSION" git push --follow-tags shell: bash # map inputs to environment variables to avoid shell injection @@ -26,4 +26,3 @@ runs: VERSION: ${{ inputs.version }} USER_EMAIL: ${{ inputs.user-email }} USER_NAME: ${{ inputs.user-name }} - TAG_MESSAGE: ${{ inputs.tag-message }}