We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 439646f commit 1cc021aCopy full SHA for 1cc021a
1 file changed
.github/workflows/check-version-and-push-tag.yml
@@ -30,6 +30,9 @@ jobs:
30
31
- name: Push tag
32
if: steps.version-check.outputs.version != '0'
33
- uses: actions-ecosystem/action-push-tag@v1
34
- with:
35
- tag: "v${{ steps.version-check.outputs.version }}"
+ run: |
+ tag="v${{ steps.version-check.outputs.version }}"
+ git config user.name "${GITHUB_ACTOR}"
36
+ git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
37
+ git tag -a "${tag}" -m "Release ${tag}"
38
+ git push origin "${tag}"
0 commit comments