From 60ce6e455073d5584af983a172bc265330e75018 Mon Sep 17 00:00:00 2001 From: Muffin Date: Sun, 21 Jan 2024 23:31:36 -0600 Subject: [PATCH] Fix mock build workflow --- .github/workflows/build.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0e3ed9b4..6b643c48 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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