Skip to content

Commit

Permalink
[ci] Fix git push tag action #598 (#599)
Browse files Browse the repository at this point in the history
replace action with raw git calls
  • Loading branch information
michaelvlach authored Jun 18, 2023
1 parent 7fcc755 commit 5d0b43e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ jobs:
if: needs.new_version.outputs.new_version != ''
steps:
- uses: actions/checkout@v3
- uses: actions-ecosystem/action-push-tag@v1
with:
tag: v${{ needs.new_version.outputs.new_version }}
- run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git tag -a "v${{ needs.new_version.outputs.new_version }}"
git push origin "v${{ needs.new_version.outputs.new_version }}"
- uses: softprops/action-gh-release@v1
with:
tag_name: v${{ needs.new_version.outputs.new_version }}
Expand Down

0 comments on commit 5d0b43e

Please sign in to comment.