We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6b6638 commit 43c73fbCopy full SHA for 43c73fb
1 file changed
.github/workflows/publish.yml
@@ -30,13 +30,13 @@ jobs:
30
31
- name: Commit and push version change
32
env:
33
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.PAT }}
34
run: |
35
git config --global user.name 'github-actions'
36
git config --global user.email 'github-actions@github.com'
37
git add package.json
38
git commit -m "Update version to ${{ github.event.release.tag_name }}"
39
- git push origin HEAD:master # Push changes to the master branch
+ git push https://x-access-token:${{ secrets.PAT }}@github.com/byteyard/modulatecss.git HEAD:master
40
41
- name: Publish to npm
42
0 commit comments