Add ability to build GTK app AppImage (#240)
#238 Add AppImage build support Implements - Downgrade to libadwaita 1.3 for wider distro support - Add build script, workflow, and docs for AppImage - Add build docs for Debian (apt) and Void Linux - Building AppImage in CI
This commit is contained in:
parent
44ecf042a3
commit
ab73183b2b
11 changed files with 311 additions and 147 deletions
23
.github/workflows/build-appimage.yml
vendored
Normal file
23
.github/workflows/build-appimage.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Build AppImage
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
jobs:
|
||||
appimage:
|
||||
name: Build AppImage
|
||||
runs-on: ubuntu-latest
|
||||
container: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build AppImage
|
||||
run: |
|
||||
docker build -t appimage-builder . -f burrow-gtk/build-aux/Dockerfile
|
||||
docker create --name temp appimage-builder
|
||||
docker cp temp:/app/burrow-gtk/build-appimage/Burrow-x86_64.AppImage .
|
||||
docker rm temp
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: AppImage
|
||||
path: Burrow-x86_64.AppImage
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue