Skip to content

Commit

Permalink
push head with tag and use PAT to trigger other workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Dec 20, 2023
1 parent 173ebd0 commit bfd6819
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ jobs:
GIT_COMMITTER_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT_WRITE }}
- name: Bump Version
run: npm version patch
- name: Push tag
run: git push origin tag $(git tag --points-at HEAD)
run: |
git push origin tag $(git tag --points-at HEAD)
git push origin

0 comments on commit bfd6819

Please sign in to comment.