From 49550e8e69da3c493a986d0a8b6935a28f75af1d Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Sat, 22 Feb 2025 12:55:59 +0100 Subject: [PATCH 1/2] chore(ci): remove now unneeded arm64 workaround the change is now part of electron-forge 7.7.0 which we depend on since fa05f15753fcbfb38129cb9792a063093798d80b --- .github/actions/build-electron/action.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/actions/build-electron/action.yml b/.github/actions/build-electron/action.yml index 76e8161b5..c577583cf 100644 --- a/.github/actions/build-electron/action.yml +++ b/.github/actions/build-electron/action.yml @@ -27,10 +27,6 @@ runs: - name: Install dependencies shell: bash run: npm ci - - name: Temporary Flatpak arm64 workaround till https://github.com/electron/forge/pull/3839 is merged - if: ${{ inputs.os == 'linux' && inputs.arch == 'arm64' }} - shell: bash - run: sed -e "s/case 'armv7l'/case 'arm64'/g" -e "s/return 'arm'/return 'aarch64'/g" -i node_modules/@electron-forge/maker-flatpak/dist/MakerFlatpak.js - name: Update build info shell: bash run: npm run chore:update-build-info From 2492bf60df49c0ff0819ebb190102d47e777e4b1 Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Sat, 22 Feb 2025 12:56:14 +0100 Subject: [PATCH 2/2] chore(ci): add zip to description --- .github/actions/build-electron/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-electron/action.yml b/.github/actions/build-electron/action.yml index c577583cf..24e269aee 100644 --- a/.github/actions/build-electron/action.yml +++ b/.github/actions/build-electron/action.yml @@ -6,7 +6,7 @@ inputs: description: "The architecture to build for: x64, arm64" required: true extension: - description: "Platform specific extensions to copy in the output: dmg, deb, rpm, exe" + description: "Platform specific extensions to copy in the output: dmg, deb, rpm, exe, zip" required: true runs: using: composite