We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aef9cc commit ccee4f3Copy full SHA for ccee4f3
.github/workflows/ci.yml
@@ -59,10 +59,18 @@ jobs:
59
- name: Setup
60
uses: ./.github/actions/setup
61
62
+ - name: Initialize Git user
63
+ run: |
64
+ git config --global user.name "Release Workflow"
65
+ git config --global user.email "${{ secrets.GIT_EMAIL }}"
66
+
67
- name: Initialize the NPM config
68
run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
69
env:
70
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
71
72
- name: Deploy package to NPM
73
run: yarn release --ci
74
+ env:
75
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
76
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
0 commit comments