We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cd81db commit 7ce3efeCopy full SHA for 7ce3efe
1 file changed
.github/workflows/publish.yml
@@ -11,14 +11,15 @@ 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
20
- env:
+
+ - env:
21
TAG_NAME: ${{ github.event.release.tag_name }}
22
- - run: npm whoami; npm --ignore-scripts publish
23
24
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ run: |
+ npm ci
+ npm test
+ npm version ${TAG_NAME} --git-tag-version=false
25
+ npm whoami; npm --ignore-scripts publish
0 commit comments