Skip to content

Commit

Permalink
Fix mock build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Jan 22, 2024
1 parent 641dddb commit 60ce6e4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,12 @@ jobs:
run: npm run fetch
- name: Compile
run: npm run webpack:compile
- name: Package
run: npm run dist -- --publish never
- name: Package Windows
if: runner.os == 'Windows'
run: node release-automation/build.js --windows --windows-legacy --microsoft-store
- name: Package macOS
if: runner.os == 'macOS'
run: node release-automation/build.js --mac
- name: Package Linux
if: runner.os == 'Linux'
run: node release-automation/build.js --debian --tarball --appimage

0 comments on commit 60ce6e4

Please sign in to comment.