32 lines
771 B
YAML
32 lines
771 B
YAML
name: Build
|
|
|
|
on:
|
|
[pull_request, push]
|
|
|
|
jobs:
|
|
packages:
|
|
name: "Build AppImage"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repo
|
|
uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: install_deps
|
|
run: make install_deps
|
|
- name: build_appimage_x64
|
|
run: make build_appimage_x64
|
|
- name: build_appimage_arm64
|
|
run: make build_appimage_arm64
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: deezer-desktop-nightly-build-x64.AppImage
|
|
path: artifacts/x64/deezer-desktop-*.AppImage
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: deezer-desktop-nightly-build-arm64.AppImage
|
|
path: artifacts/arm64/deezer-desktop-*.AppImage
|