mirror of
https://github.com/A-Star100/simpliplay-desktop.git
synced 2025-09-18 06:39:44 +00:00
24 lines
691 B
YAML
24 lines
691 B
YAML
jobs:
|
|
build_arm64_linux:
|
|
docker:
|
|
- image: circleci/node:22 # Node.js 22 ARM64-compatible image
|
|
platform: linux/arm64
|
|
working_directory: ~/simpliplay-desktop/simpliplay
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Install dependencies
|
|
command: npm install
|
|
- run:
|
|
name: Install snapcraft
|
|
command: sudo snap install snapcraft --classic
|
|
- run:
|
|
name: Build Snap and AppImage (ARM64)
|
|
command: npx electron-builder --linux --arm64
|
|
- store_artifacts:
|
|
path: dist/*.snap
|
|
destination: snaps
|
|
- store_artifacts:
|
|
path: dist/*.AppImage
|
|
destination: appimages
|