Skip to content

Commit

Permalink
gf
Browse files Browse the repository at this point in the history
  • Loading branch information
marikaner committed Sep 13, 2024
1 parent a855aad commit ac16b2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/commit-and-tag/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@ 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
env:
VERSION: ${{ inputs.version }}
USER_EMAIL: ${{ inputs.user-email }}
USER_NAME: ${{ inputs.user-name }}
TAG_MESSAGE: ${{ inputs.tag-message }}

0 comments on commit ac16b2c

Please sign in to comment.