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.
2 parents 0cd81db + 65929d0 commit ca19573Copy full SHA for ca19573
.github/workflows/publish.yml
@@ -11,14 +11,16 @@ jobs:
11
- uses: actions/checkout@v3
12
- uses: actions/setup-node@v3
13
with:
14
- node-version: 14
+ node-version: 16
15
registry-url: https://registry.npmjs.org/
16
cache: npm
17
- run: npm ci
18
- run: npm test
19
- - run: npm version ${TAG_NAME} --git-tag-version=false
+ - run: |
20
+ echo "Publishing $TAG_NAME"
21
+ npm version ${TAG_NAME} --git-tag-version=false
22
env:
- TAG_NAME: ${{ github.event.release.tag_name }}
23
+ TAG_NAME: ${{github.event.release.tag_name}}
24
- run: npm whoami; npm --ignore-scripts publish
25
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
26
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
0 commit comments