Skip to content

Commit a13e992

Browse files
committed
Fixed build
1 parent f4c46b9 commit a13e992

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/publish.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,20 @@ jobs:
2626
with:
2727
fetch-depth: 0
2828

29+
# pnpm
30+
- uses: pnpm/action-setup@v4
31+
with:
32+
run_install: false
33+
2934
# Node + registry auth
3035
- uses: actions/setup-node@v5
3136
with:
3237
node-version: "20"
3338
registry-url: "https://registry.npmjs.org"
39+
cache: "pnpm"
3440

35-
# pnpm
36-
- uses: pnpm/action-setup@v4
37-
with:
38-
run_install: true
41+
# Install dependencies
42+
- run: pnpm install
3943

4044
# Ensure the tag matches package.json version
4145
- name: Verify version matches tag

0 commit comments

Comments
 (0)