Skip to content

Commit

Permalink
Updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-fiscaletti committed Apr 18, 2024
1 parent 086dc2b commit 191ded2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/package_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 191ded2

Please sign in to comment.