Skip to content

fix deb yml

fix deb yml #181

Workflow file for this run

name: Build AppImage
on:
push:
branches:
- "main"
pull_request:
branches:
- "*"
jobs:
build_appimage:
runs-on: ubuntu-latest
container: debian:bullseye
defaults:
run:
shell: bash
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: update
run: apt-get update -y
- name: Install Qt & utils
run: |
apt-get update
apt-get install -y cmake
apt-get install -y g++
apt-get install -y qtbase5-dev
apt-get install -y wget
apt-get install -y file
- name: Build AppImage
env:
APPIMAGE_EXTRACT_AND_RUN: 1
run: |
scripts/build_appimage.sh
- name: Upload AppImage
uses: actions/upload-artifact@v4
with:
name: AppImage
path: ./*.AppImage*
- name: Upload AppDir
uses: actions/upload-artifact@v4
with:
name: AppDir
path: ./AppDir