Skip to content

Appimage

Appimage #1

Workflow file for this run

name: Build and Package AppImage
on:
push:
branches:
- main
- master
- appimage
pull_request:
branches:
- main
- master
- appimage
jobs:
build-appimage:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v3
# Set up dependencies
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake libgl1-mesa-dev libglu1-mesa-dev \
libsdl2-dev libsdl2-net-dev zlib1g-dev
# Build Supermodel
- name: Build Supermodel
run: |
cd ./AppImage
./build_app_image.sh
# Upload the AppImage as an artifact
- name: Upload AppImage
uses: actions/upload-artifact@v3
with:
name: Supermodel.AppImage
path: ./AppImage/Supermodel-x86_64.AppImage