Skip to content

Building AppImage

Building AppImage #30

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