We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0e6404 commit 7f76bf3Copy full SHA for 7f76bf3
1 file changed
.github/workflows/npm-publish.yml
@@ -17,6 +17,8 @@ jobs:
17
node-version: 16
18
- run: npm ci
19
- run: npm test
20
+ - run: git config --global user.name "GitHub CD bot"
21
+ - run: git config --global user.email "github-cd-bot@example.com"
22
23
publish-npm:
24
needs: build
@@ -32,3 +34,7 @@ jobs:
32
34
- run: npm publish
33
35
env:
36
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
37
+ - run: git push
38
+ env:
39
+ # The secret is passed automatically. Nothing to configure.
40
+ github-token: ${{ secrets.GH_TOKEN }}
0 commit comments