File tree Expand file tree Collapse file tree 2 files changed +37
-1
lines changed
Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ workflow_dispatch :
5+
6+ permissions :
7+ contents : write
8+ id-token : write
9+
10+ jobs :
11+ release :
12+ name : Release
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v4
16+ with :
17+ fetch-depth : 0
18+
19+ - uses : pnpm/action-setup@v3
20+
21+ - uses : actions/setup-node@v4
22+ with :
23+ node-version : 22.x
24+ cache : pnpm
25+
26+ - name : Install deps
27+ run : |
28+ pnpm i --frozen-lockfile
29+
30+ - name : Release
31+ run : |
32+ npm install -g npm@latest # Ensure npm 11.5.1 or later is installed
33+ pnpm publish
Original file line number Diff line number Diff line change 11{
22 "name" : " @fanciers/echarts-react" ,
3- "version" : " 0.0.0 " ,
3+ "version" : " 0.0.1 " ,
44 "description" : " ECharts <3 React" ,
55 "author" : " Tmk <i@tmk.im>" ,
66 "keywords" : [
2323 }
2424 },
2525 "typings" : " ./dist/index.d.ts" ,
26+ "repository" : {
27+ "url" : " https://github.com/tmkx/echarts-react.git"
28+ },
2629 "scripts" : {
2730 "dev" : " storybook dev" ,
2831 "prepack" : " tsdown" ,
You can’t perform that action at this time.
0 commit comments