Skip to content

Commit

Permalink
update tag push logic
Browse files Browse the repository at this point in the history
  • Loading branch information
darwin67 committed Feb 29, 2024
1 parent 25f8969 commit a98dfb9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ jobs:
PUBLISHER_API: https://central.sonatype.com/api/v1/publisher/upload

- name: Create tag for pkg
run: git tag $TAG && git push $TAG
run: |
git config user.name $GITHUB_ACTOR
git config user.email "[email protected]"
git tag $PKG_TAG
git push origin $PKG_TAG
env:
TAG: ${{ matrix.pkg }}-${{ env.PKG_VERSION }}
PKG_TAG: ${{ matrix.pkg }}-${{ env.PKG_VERSION }}

0 comments on commit a98dfb9

Please sign in to comment.