Skip to content

Commit 703a4c7

Browse files
authored
Merge pull request #8 from Outblock/feat/erc4337
chore: release SDK v0.1.4 via GitHub Actions
2 parents e619e1e + e0015e9 commit 703a4c7

2 files changed

Lines changed: 40 additions & 1 deletion

File tree

.github/workflows/publish-sdk.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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 }}

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

0 commit comments

Comments
 (0)