Skip to content

Commit 594f3c1

Browse files
committed
build: add corepack
1 parent cc00a12 commit 594f3c1

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020

21+
- name: Use Latest Corepack
22+
run: |
23+
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
24+
npm install -g corepack@latest
25+
echo "After : corepack version => $(corepack --version)"
26+
corepack enable
27+
pnpm --version
28+
2129
- name: Login to GitHub Container Registry
2230
uses: docker/login-action@v3
2331
with:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@
6161
],
6262
"*.{json,md}": "prettier --write"
6363
},
64-
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
64+
"packageManager": "yarn@4.6.0"
6565
}

0 commit comments

Comments
 (0)