Skip to content
Merged
6 changes: 5 additions & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ jobs:
run: npx standard-version

- name: Push version bump commit and tags
run: git push https://x-access-token:${{ secrets.TOKEN_GITHUB }}@github.com/${{ github.repository }} main --follow-tags
env:
GITHUB_PAT: ${{ secrets.TOKEN_GITHUB }}
run: |
git push https://x-access-token:${GITHUB_PAT}@github.com/${{ github.repository }} main --follow-tags

- name: Publish package to npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down