File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Publish SDK
2+
3+ on :
4+ push :
5+ tags :
6+ - " sdk-v*"
7+ workflow_dispatch :
8+
9+ jobs :
10+ publish-sdk :
11+ runs-on : ubuntu-latest
12+ permissions :
13+ contents : read
14+ defaults :
15+ run :
16+ working-directory : packages/sdk
17+ steps :
18+ - name : Checkout
19+ uses : actions/checkout@v4
20+
21+ - name : Setup Bun
22+ uses : oven-sh/setup-bun@v2
23+
24+ - name : Setup Node
25+ uses : actions/setup-node@v4
26+ with :
27+ node-version : 20
28+ registry-url : https://registry.npmjs.org
29+
30+ - name : Install dependencies
31+ run : bun install --frozen-lockfile
32+
33+ - name : Build package
34+ run : bun run build
35+
36+ - name : Publish to npm
37+ run : npm publish --access public --provenance
38+ env :
39+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 11{
22 "name" : " @outblock/flow-dev-wallet-sdk" ,
3- "version" : " 0.1.3 " ,
3+ "version" : " 0.1.4 " ,
44 "description" : " SDK for integrating Flow Dev Wallet into EVM dApps (wagmi/RainbowKit)" ,
55 "type" : " module" ,
66 "main" : " ./dist/index.js" ,
You can’t perform that action at this time.
0 commit comments