Skip to content

Commit d752a05

Browse files
committed
fix: install
1 parent 3ba7972 commit d752a05

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,19 @@ jobs:
2626
# https://github.community/t/action-does-not-trigger-another-on-push-tag-action/17148/8
2727
token: ${{ steps.generate_github_token.outputs.token }}
2828

29-
- name: Setup
30-
uses: ./.github/actions/ci
29+
- name: Install pnpm
30+
uses: pnpm/[email protected]
31+
with:
32+
run_install: false
33+
34+
- name: Setup Node.js
35+
uses: actions/setup-node@v4
36+
with:
37+
node-version-file: ".nvmrc"
38+
cache: "pnpm"
39+
40+
- name: Install
41+
run: pnpm install --no-frozen-lockfile
3142

3243
- name: Creating .npmrc
3344
run: |

0 commit comments

Comments
 (0)