Skip to content

Commit 5fa7c1f

Browse files
committed
Fix github action
1 parent 767e30d commit 5fa7c1f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,10 @@ jobs:
7777
${{ runner.os }}-node-modules-
7878
7979
- name: Install Node Module
80-
run: npm i pnpm -g && pnpm i
81-
env:
82-
PATH: C:/Users/runneradmin/AppData/Roaming/npm:${{ env.PATH }}
80+
run: |
81+
npm i pnpm -g
82+
echo "C:/Users/runneradmin/AppData/Roaming/npm" >> $GITHUB_PATH
83+
pnpm i
8384
8485
- name: Install Protoc
8586
uses: arduino/setup-protoc@v3

0 commit comments

Comments
 (0)