From 191ded2e53ab36cf9fbac6b7b66373fdad651119 Mon Sep 17 00:00:00 2001 From: Nathan Fiscaletti Date: Wed, 17 Apr 2024 23:56:39 -0500 Subject: [PATCH] Updated workflow --- .github/workflows/package_release.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/package_release.yml b/.github/workflows/package_release.yml index 0bd9d9d..525bc2d 100644 --- a/.github/workflows/package_release.yml +++ b/.github/workflows/package_release.yml @@ -19,7 +19,7 @@ jobs: run: npm install -g yarn # Install dependencies - name: Install Dependencies - run: yarn install --network-timeout 1000000 + run: yarn install # Build the project - name: Package for Linux run: yarn electron:package:linux @@ -44,9 +44,14 @@ jobs: # Install yarn - name: Install Yarn run: npm install -g yarn + # Disable yarn proxy + - name: Disable Yarn Proxy + run: npm config rm proxy + - name: Disable Yarn HTTPS Proxy + run: npm config rm https-proxy # Install dependencies - name: Install Dependencies - run: yarn install --network-timeout 1000000 + run: yarn install # Build the project - name: Package for Windows run: yarn electron:package:win