Skip to content

Commit

Permalink
Create "Release AppImage" GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
brkzlr committed May 11, 2024
1 parent 76cbcf4 commit 3ac10ed
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release_appimage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release AppImage

on:
push:
tags:
- "v*.*"

jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt install libfuse2 libmpc-dev libmpfr-dev gmpc-dev appstream qt6-l10n-tools libcairo2-dev libgirepository1.0-dev
- name: Build
run: |
export ARCH=x86_64
./ci/package.sh
- name: Release
uses: softprops/action-gh-release@v2
with:
make_latest: true
files: ci/PINCE-x86_64.AppImage

0 comments on commit 3ac10ed

Please sign in to comment.