Skip to content

Commit 64b9969

Browse files
committed
fix: extend network timeout for yarn install in build and publish
1 parent 24a9161 commit 64b9969

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
with:
2020
node-version-file: './.nvmrc'
2121
- name: install dependencies
22-
run: yarn install
22+
run: yarn install --network-timeout 1000000000
2323
- name: build
2424
run: yarn make

.github/workflows/publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
node-version-file: './.nvmrc'
2323
- name: install dependencies
24-
run: yarn install
24+
run: yarn install --network-timeout 1000000000
2525
- name: publish
2626
env:
2727
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)