Skip to content

Commit 2379ef5

Browse files
authored
Create npm-publish.yml
1 parent baf0782 commit 2379ef5

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/npm-publish.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2+
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3+
4+
name: Node.js Package
5+
6+
# 触发条件:推送到main分支时(包括合并PR到main)
7+
on:
8+
push:
9+
branches: [ main ]
10+
11+
jobs:
12+
publish-npm:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: 20
19+
registry-url: https://registry.npmjs.org/
20+
- run: npm ci
21+
- run: npm run build # 编译ts为js
22+
- run: npm publish
23+
env:
24+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

0 commit comments

Comments
 (0)