Skip to content

Commit c4987c4

Browse files
committed
fix(ci): setup pnpm before node cache in release workflow
- install pnpm before actions/setup-node cache=pnpm to avoid missing executable errors - aligns with fix from PR #165 for lint workflow
1 parent 7bdd1ec commit c4987c4

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@ jobs:
3737
with:
3838
path: ${{ env.APP_NAME }}
3939

40+
- name: Set up pnpm
41+
uses: pnpm/action-setup@v4
42+
with:
43+
version: 10.28.2
44+
4045
- name: Set up node
4146
uses: actions/setup-node@v4
4247
with:
4348
node-version: "24"
4449
cache: "pnpm"
4550
cache-dependency-path: ./${{ env.APP_NAME }}/pnpm-lock.yaml
4651

47-
- name: Set up pnpm
48-
uses: pnpm/action-setup@v4
49-
with:
50-
version: 10.28.2
51-
5252
- name: Run build
5353
run: |
5454
mkdir -p ${{ env.CERT_DIRECTORY }}

0 commit comments

Comments
 (0)