Skip to content

Commit 4aa3672

Browse files
fix(ci): issue with client build, bump client version
1 parent e95c83d commit 4aa3672

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_OUTPUT
5757

5858
- name: Install pnpm
59-
uses: pnpm/action-setup@v2
59+
uses: pnpm/action-setup@v4
6060
with:
6161
version: 9
6262

@@ -67,6 +67,12 @@ jobs:
6767
cache: 'pnpm'
6868
cache-dependency-path: 'src/pywire/client/pnpm-lock.yaml'
6969

70+
- name: Build client bundle
71+
run: |
72+
cd src/pywire/client
73+
pnpm install --frozen-lockfile
74+
pnpm build
75+
7076
- name: Setup Rust
7177
uses: actions-rust-lang/setup-rust-toolchain@v1
7278
with:
@@ -134,7 +140,7 @@ jobs:
134140
run: echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_OUTPUT
135141

136142
- name: Install pnpm
137-
uses: pnpm/action-setup@v2
143+
uses: pnpm/action-setup@v4
138144
with:
139145
version: 9
140146

src/pywire/client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pywire-client",
3-
"version": "0.1.10-dev0",
3+
"version": "0.1.10",
44
"description": "PyWire client-side library with transport fallbacks",
55
"type": "module",
66
"private": true,
@@ -41,4 +41,4 @@
4141
"esbuild"
4242
]
4343
}
44-
}
44+
}

0 commit comments

Comments
 (0)