We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9bc0b9 commit f0086f1Copy full SHA for f0086f1
.github/workflows/build.yml
@@ -0,0 +1,23 @@
1
+name: npm build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request: {}
8
9
+jobs:
10
+ publish-npm:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: actions/setup-node@v1
15
+ with:
16
+ node-version: 12
17
+ registry-url: https://registry.npmjs.org/
18
+ - run: npm ci
19
+ - name: Publish to npm
20
+ run: npm publish --tag next
21
+ env:
22
+ NODE_AUTH_TOKEN: ${{secrets.npm_token}}
23
+ if: github.ref == 'refs/heads/master'
.travis.yml
package.json
@@ -1,6 +1,6 @@
{
"name": "kaitai-struct",
- "version": "0.9.0-SNAPSHOT.1",
+ "version": "0.9.0-SNAPSHOT.3",
"description": "Kaitai Struct: runtime library for Javascript",
"main": "index.js",
"repository": {
0 commit comments