We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c5545d commit 9d5b645Copy full SHA for 9d5b645
.github/workflows/npm-publish.yml
@@ -30,3 +30,16 @@ jobs:
30
- run: npm publish
31
env:
32
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
33
+
34
+ publish-npm-beta:
35
+ needs: build
36
+ runs-on: ubuntu-latest
37
+ steps:
38
+ - uses: actions/checkout@v2
39
+ - uses: actions/setup-node@v2
40
+ with:
41
+ node-version: 14
42
+ registry-url: https://registry.npmjs.org/
43
+ - run: npm publish --tag beta
44
+ env:
45
+ NODE_AUTH_TOKEN: ${{secrets.npm_token}}
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "wbc",
3
- "version": "0.4.0",
+ "version": "0.4.0-beta.0",
4
"description": "Node.js addon for the Quickjs compiler",
5
"main": "index.js",
6
"bin": {
0 commit comments