Skip to content

Commit d23da7c

Browse files
committed
ci: add prebuild workflow for multi-platform support
1 parent b6b7d4c commit d23da7c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/prebuild.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)