Update config.yml

This commit is contained in:
Anirudh Sevugan 2025-07-13 18:45:10 -05:00 committed by GitHub
parent c465a22f3c
commit e1366bbbd3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +1,9 @@
version: 2.1
jobs:
build_arm64_linux:
docker:
- image: circleci/node:22 # Node.js 22 on ARM64
platform: linux/arm64
working_directory: ~/simpliplay-desktop/simpliplay # working dir to repo/code dir
- image: circleci/node:22 # Node.js 22 ARM64-compatible image
platform: linux/arm64
working_directory: ~/simpliplay-desktop/simpliplay
steps:
- checkout
- run:
@ -17,18 +15,9 @@ jobs:
- run:
name: Build Snap and AppImage (ARM64)
command: npx electron-builder --linux --arm64
# Store .snap artifacts
- store_artifacts:
path: dist/*.snap
destination: snaps
# Store .AppImage artifacts
- store_artifacts:
path: dist/*.AppImage
destination: appimages
workflows:
build_and_test:
jobs:
- build_arm64_linux