Skip to content

ci fix: Do not build AppImage for tags #17

ci fix: Do not build AppImage for tags

ci fix: Do not build AppImage for tags #17

Workflow file for this run

name: Create Appimage
on: [push]
tags-ignore: *

Check failure on line 3 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 3
jobs:
Create-Appimage:
runs-on: ubuntu-20.04
steps:
- name: Check out the repository to the runner
uses: actions/checkout@v4
- name: Install dependencies
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
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}