diff --git a/.github/workflows/build-gui-release-binaries-cb.yml b/.github/workflows/build-gui-release-binaries-cb.yml index 49c0aabd..e56a6bde 100644 --- a/.github/workflows/build-gui-release-binaries-cb.yml +++ b/.github/workflows/build-gui-release-binaries-cb.yml @@ -85,7 +85,8 @@ jobs: - name: Install Frontend Dependencies working-directory: src-gui - run: yarn install + # Set the yarn network timeout to a high value to avoid spurious network errors + run: yarn install --network-timeout 600000 - name: install tauri-cli globally uses: taiki-e/cache-cargo-install-action@v2 diff --git a/.github/workflows/build-gui-release-binaries.yml b/.github/workflows/build-gui-release-binaries.yml index 2a6a743f..8e55ae81 100644 --- a/.github/workflows/build-gui-release-binaries.yml +++ b/.github/workflows/build-gui-release-binaries.yml @@ -71,7 +71,8 @@ jobs: - name: install frontend dependencies working-directory: src-gui - run: yarn install + # Set the yarn network timeout to a high value to avoid spurious network errors + run: yarn install --network-timeout 600000 - name: install tauri-cli globally uses: taiki-e/cache-cargo-install-action@v2