Skip to content

Add CI task definition to build an AppImage again #1

Add CI task definition to build an AppImage again

Add CI task definition to build an AppImage again #1

Workflow file for this run

name: Create Appimage
on: [push]
jobs:
Create-Appimage:
runs-on: ubuntu-20.04
steps:
- name: Install dependencies

Check failure on line 7 in .github/workflows/appimage.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/appimage.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
run: sudo apt-get -y install pkg-config libglib2.0-dev libgconf2-dev libgtk-3-dev libwnck-3-dev libwxgtk3.0-gtk3-dev libxcb1-dev libxcb-ewmh-dev xcb-proto librsvg2-dev
- name: Compile software
run: make
- name: Install into appdir
run: DESTDIR=appdir make install
- name: Build AppImage
run: make -f Makefile.appimage build
- name: Upload AppImage
run: make -f Makefile.appimage upload