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.
1 parent 54bb40b commit a2bc5b4Copy full SHA for a2bc5b4
.github/workflows/npm.yml
@@ -0,0 +1,19 @@
1
+name: Node.js Package
2
+
3
+on:
4
+ release:
5
+ types: [created]
6
7
+jobs:
8
9
+ publish-npm:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: actions/setup-node@v1
14
+ with:
15
+ node-version: 12
16
+ registry-url: https://registry.npmjs.org/
17
+ - run: npm publish
18
+ env:
19
+ NODE_AUTH_TOKEN: ${{secrets.npm_token}}
0 commit comments