Skip to content

Commit 3c4aa61

Browse files
committed
fix: ci command fix
1 parent 0fd2602 commit 3c4aa61

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-and-release-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Build native executable
4747
if: ${{ startsWith(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags/v') }}
48-
run: pnpm install --network-timeout 1000000 && pnpm package-linux
48+
run: pnpm install --fetch-timeout 1000000 && pnpm package-linux
4949
env:
5050
GH_TOKEN: ${{ secrets.github_token }}
5151

.github/workflows/build-and-release-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Build native executable
3939
if: ${{ startsWith(matrix.os, 'macos') && startsWith(github.ref, 'refs/tags/v') }}
40-
run: pnpm install --network-timeout 1000000 && pnpm package-macos
40+
run: pnpm install --fetch-timeout 1000000 && pnpm package-macos
4141
env:
4242
GH_TOKEN: ${{ secrets.github_token }}
4343

.github/workflows/build-and-release-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Build native executable
3939
if: ${{ startsWith(matrix.os, 'windows') && startsWith(github.ref, 'refs/tags/v') }}
40-
run: pnpm install --network-timeout 1000000 && pnpm package-win
40+
run: pnpm install --fetch-timeout 1000000 && pnpm package-win
4141
env:
4242
GH_TOKEN: ${{ secrets.github_token }}
4343

0 commit comments

Comments
 (0)