We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bee6621 commit d2d7205Copy full SHA for d2d7205
1 file changed
.github/workflows/npm-publish.yml
@@ -14,7 +14,7 @@ jobs:
14
15
strategy:
16
matrix:
17
- node: [14]
+ node: [16]
18
os: [ubuntu-latest]
19
20
steps:
@@ -34,9 +34,15 @@ jobs:
34
- uses: actions/checkout@v2
35
- uses: actions/setup-node@v2
36
with:
37
- node-version: 14
+ node-version: 16
38
registry-url: https://registry.npmjs.org/
39
- run: npm ci
40
+ - run: git config --global user.name "Sven"
41
+ - run: git config --global user.email "mailsvb@gmail.com"
42
+ - run: npm version ${{ github.event.release.tag_name }}
43
- run: npm publish
44
env:
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
45
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
46
+ - run: git push
47
+ env:
48
+ github-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments