File tree Expand file tree Collapse file tree 2 files changed +39
-2
lines changed
packages/material-react-table Expand file tree Collapse file tree 2 files changed +39
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Publish Build
2+
3+ on :
4+ release :
5+ types : [created]
6+
7+ jobs :
8+ build-and-publish :
9+ runs-on : ubuntu-latest
10+
11+ steps :
12+ - name : Checkout repository
13+ uses : actions/checkout@v2
14+
15+ - name : Setup Node.js
16+ uses : actions/setup-node@v3
17+ with :
18+ node-version : 21
19+
20+ - name : Setup pnpm
21+ uses : pnpm/action-setup@v4
22+
23+ - name : Install dependencies
24+ run : pnpm install
25+ working-directory : packages/material-react-table
26+
27+ - name : Build package
28+ run : pnpm build
29+ working-directory : packages/material-react-table
30+
31+ - name : Publish release
32+ env :
33+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
34+ run : |
35+ pnpm pack
36+ gh release upload ${{ github.event.release.tag_name }} *.tgz
37+ working-directory : packages/material-react-table
Original file line number Diff line number Diff line change 11{
2- "version" : " 3.2.1" ,
2+ "version" : " 3.2.1-dropit " ,
33 "license" : " MIT" ,
44 "name" : " material-react-table" ,
55 "description" : " A fully featured Material UI V6 implementation of TanStack React Table V8, written from the ground up in TypeScript." ,
118118 "@tanstack/react-virtual" : " 3.11.2" ,
119119 "highlight-words" : " 2.0.0"
120120 }
121- }
121+ }
You can’t perform that action at this time.
0 commit comments