Skip to content

Commit

Permalink
set git name & email & git tag to push
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Dec 20, 2023
1 parent 79b9b61 commit 410d9da
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,12 @@ jobs:
release:
needs: [ test ]
runs-on: ubuntu-latest
env:
GIT_AUTHOR_NAME: github-actions[bot]
GIT_AUTHOR_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
steps:
- uses: actions/checkout@v4
- name: Bump Version
run: npm version minor
run: npm version patch
- name: Push tag
run: git push tag
run: git push origin tag $(git tag --points-at HEAD)

0 comments on commit 410d9da

Please sign in to comment.