Skip to content

Commit 78349c8

Browse files
authored
Merge pull request #8 from kdn0325/chore/fix-yarn-configuration
Chore/fix yarn configuration
2 parents 76bf4e5 + 81a4211 commit 78349c8

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@ jobs:
2020
uses: actions/setup-node@v4
2121
with:
2222
node-version: 20
23-
cache: 'yarn'
2423

25-
- name: Enable Corepack and prepare Yarn
24+
# 코어팩 활성화 및 설정
25+
- name: Setup Corepack
2626
run: |
27-
corepack enable
28-
corepack prepare [email protected] --activate
29-
yarn set version 3.6.4
27+
# 코어팩 활성화 (sudo 사용)
28+
sudo corepack enable
29+
# 패키지 매니저 준비
30+
sudo corepack prepare [email protected] --activate
31+
# 확인
3032
which yarn
3133
yarn --version
3234

0 commit comments

Comments
 (0)