We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e90afa3 commit ff9ec1dCopy full SHA for ff9ec1d
.github/workflows/publish.yml
@@ -11,7 +11,14 @@ jobs:
11
with:
12
node-version: '16.x'
13
registry-url: 'https://registry.npmjs.org'
14
+ - name: Git Identity
15
+ run: |
16
+ git config --global user.name 'github-actions[bot]'
17
+ git config --global user.email 'github-actions[bot]@users.noreply.github.com'
18
+ git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
- run: yarn
- - run: yarn publish
22
+ - run: yarn release
23
env:
24
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments