Merge pull request #1254 from TriliumNext/ci_remove-extra-arm64-handling

ci: remove unneeded extra arm64 handling
This commit is contained in:
Elian Doran 2025-02-22 14:58:50 +02:00 committed by GitHub
commit 2380d0af85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ inputs:
description: "The architecture to build for: x64, arm64" description: "The architecture to build for: x64, arm64"
required: true required: true
extension: 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 required: true
runs: runs:
using: composite using: composite
@ -27,10 +27,6 @@ runs:
- name: Install dependencies - name: Install dependencies
shell: bash shell: bash
run: npm ci 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 - name: Update build info
shell: bash shell: bash
run: npm run chore:update-build-info run: npm run chore:update-build-info