From ac16b2cec2aacf0d53fe91460fe568f1abefbd41 Mon Sep 17 00:00:00 2001 From: Marika Marszalkowski Date: Fri, 13 Sep 2024 11:00:08 +0200 Subject: [PATCH] gf --- .github/actions/commit-and-tag/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/commit-and-tag/action.yml b/.github/actions/commit-and-tag/action.yml index 8df4a278f3..03652072b3 100644 --- a/.github/actions/commit-and-tag/action.yml +++ b/.github/actions/commit-and-tag/action.yml @@ -21,7 +21,7 @@ runs: git config --global user.name "$USER_NAME" git add -A git commit -m "v$VERSION" - git tag "v$VERSION" -m "v$VERSION" + git tag "v$VERSION" -m "v$TAG_MESSAGE" git push --follow-tags shell: bash # map inputs to environment variables to avoid shell injection @@ -29,3 +29,4 @@ runs: VERSION: ${{ inputs.version }} USER_EMAIL: ${{ inputs.user-email }} USER_NAME: ${{ inputs.user-name }} + TAG_MESSAGE: ${{ inputs.tag-message }}