File tree Expand file tree Collapse file tree 3 files changed +48
-28
lines changed
Expand file tree Collapse file tree 3 files changed +48
-28
lines changed Original file line number Diff line number Diff line change 1+ name : Publish Any Commit
2+ on : [push, pull_request]
3+
4+ jobs :
5+ build :
6+ runs-on : ubuntu-latest
7+
8+ steps :
9+ - name : Checkout code
10+ uses : actions/checkout@v4
11+
12+ - run : corepack enable
13+ - uses : actions/setup-node@v4
14+ with :
15+ node-version : 22
16+ cache : " pnpm"
17+
18+ - name : Install dependencies
19+ run : pnpm install
20+
21+ - name : Build
22+ run : pnpm build
23+
24+ - run : pnpm dlx pkg-pr-new publish './packages/cli' './packages/typegen' --bin --packageManager=pnpm
Original file line number Diff line number Diff line change 1+ name : Publish Any Commit
2+ on : [push, pull_request]
3+
4+ jobs :
5+ build :
6+ runs-on : ubuntu-latest
7+
8+ steps :
9+ - name : Checkout code
10+ uses : actions/checkout@v4
11+
12+ - run : corepack enable
13+ - uses : actions/setup-node@v4
14+ with :
15+ node-version : 22
16+ cache : " pnpm"
17+
18+ - name : Install dependencies
19+ run : pnpm install
20+
21+ - name : Build
22+ run : pnpm build
23+
24+ - run : pnpm dlx pkg-pr-new publish './packages/fmdapi' './packages/webviewer' './packages/better-auth' --packageManager=pnpm
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments