Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .github/workflows/build-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
# Linux arm64 — AppImage + .deb
# ===========================================================================
linux-arm64:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -124,7 +124,10 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse2 qemu-user-static
sudo apt-get install -y fuse libfuse2

- name: Generate PNG icon from pre-built assets
run: cp installer/assets/mayros-icon-256.png installer/assets/mayros.png

- name: Build AppImage (arm64)
run: |
Expand Down Expand Up @@ -174,7 +177,8 @@ jobs:

- name: Install sharp and generate .icns icon
run: |
npm install sharp
npm install --no-package-lock --ignore-scripts sharp
npm rebuild sharp
node -e "
const sharp = require('sharp');
const fs = require('fs');
Expand Down Expand Up @@ -220,7 +224,7 @@ jobs:
files: installer/macos/output/*.dmg

macos-x64:
runs-on: macos-13
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -235,7 +239,8 @@ jobs:

- name: Install sharp and generate .icns
run: |
npm install sharp
npm install --no-package-lock --ignore-scripts sharp
npm rebuild sharp
node -e "
const sharp = require('sharp');
const fs = require('fs');
Expand Down
Loading