Skip to content

Commit 3bd1384

Browse files
ci: fix yarn global deprecation in release workflow (#2341)
1 parent 9b17752 commit 3bd1384

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@ jobs:
3838
- name: Build packages
3939
run: yarn release:build
4040

41-
- name: Install npm CLI
42-
run: yarn global add npm
41+
- name: Install latest npm CLI
42+
run: |
43+
npm install -g npm@latest
44+
npm --version
4345
4446
- name: Publishing packages
4547
env:

0 commit comments

Comments
 (0)