We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6b7d4c commit d23da7cCopy full SHA for d23da7c
1 file changed
.github/workflows/prebuild.yml
@@ -0,0 +1,22 @@
1
+name: Build Prebuilds
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - master
8
+ - 'fix/**'
9
+ pull_request:
10
+ workflow_dispatch:
11
12
+concurrency:
13
+ group: ${{github.workflow}}-${{github.ref}}
14
+ cancel-in-progress: true
15
16
+jobs:
17
+ npm:
18
+ uses: tree-sitter/workflows/.github/workflows/package-npm.yml@main
19
+ secrets:
20
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
21
+ with:
22
+ generate: false
0 commit comments