We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84aa442 commit 7d1014eCopy full SHA for 7d1014e
.github/workflows/deploy-storybook.yml
@@ -25,6 +25,7 @@ jobs:
25
uses: actions/checkout@v4
26
with:
27
fetch-depth: 0 # semantic-release needs full history
28
+ token: ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }}
29
30
- name: Setup Node.js
31
uses: actions/setup-node@v4
@@ -67,6 +68,10 @@ jobs:
67
68
69
- name: Release (semantic-release)
70
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71
+ GITHUB_TOKEN: ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }}
72
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
73
+ GIT_AUTHOR_NAME: github-actions[bot]
74
+ GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com
75
+ GIT_COMMITTER_NAME: github-actions[bot]
76
+ GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com
77
run: npx semantic-release
0 commit comments