Skip to content

Commit

Permalink
Do build one-at-a-time
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Jan 22, 2024
1 parent bc715d3 commit 8a8bc34
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,21 @@ jobs:
run: npm run webpack:compile
- name: Package Windows
if: runner.os == 'Windows'
run: node release-automation/build.js --windows --windows-legacy --microsoft-store
run: |
node release-automation/build.js --windows
node release-automation/build.js --windows-legacy
node release-automation/build.js --microsoft-store
- name: Package macOS
if: runner.os == 'macOS'
run: node release-automation/build.js --mac
run: |
node release-automation/build.js --mac
env:
USE_HARD_LINKS: "false"
- name: Package Linux
if: runner.os == 'Linux'
run: node release-automation/build.js --debian --tarball --appimage
run: |
node release-automation/build.js --debian
node release-automation/build.js --tarball
node release-automation/build.js --appimage
env:
USE_HARD_LINKS: "false"
13 changes: 10 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ jobs:

- name: Package Windows
if: runner.os == 'Windows'
run: node release-automation/build.js --production --windows --windows-legacy --microsoft-store
run: |
node release-automation/build.js --production --windows
node release-automation/build.js --production --windows-legacy
node release-automation/build.js --production --microsoft-store
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Microsoft Store Artifact
Expand All @@ -47,7 +50,8 @@ jobs:

- name: Package macOS
if: runner.os == 'macOS'
run: node release-automation/build.js --production --mac
run: |
node release-automation/build.js --production --mac
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
USE_HARD_LINKS: "false"
Expand All @@ -58,7 +62,10 @@ jobs:

- name: Package Linux
if: runner.os == 'Linux'
run: node release-automation/build.js --production --debian --tarball --appimage
run: |
node release-automation/build.js --production --debian
node release-automation/build.js --production --tarball
node release-automation/build.js --production --appimage
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
USE_HARD_LINKS: "false"

0 comments on commit 8a8bc34

Please sign in to comment.