-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (38 loc) · 1.13 KB
/
Copy pathappimage-build.yml
File metadata and controls
40 lines (38 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Build AppImage
run-name: Building AppImage
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: "${{ matrix.name }} (${{ matrix.arch }})"
runs-on: ${{ matrix.runs-on }}
strategy:
matrix:
include:
- runs-on: ubuntu-latest
name: Build AppImage
arch: x86_64
- runs-on: ubuntu-24.04-arm
name: Build AppImage
arch: aarch64
container: ghcr.io/pkgforge-dev/archlinux:latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
with:
fetch-tags: true
fetch-depth: 0
- name: Install Dependencies
run: /bin/sh ./dist/appimage/install_dependencies.sh
- name: Build AppImage
env:
VERSION: ${{ github.ref_name }}
run: /bin/sh ./dist/appimage/build_virtual_surround_manager.sh
- uses: actions/upload-artifact@v7
with:
name: AppImage-${{ github.ref_name }}-${{ matrix.arch }}
path: ./build_appimage