-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create "Release AppImage" GitHub workflow
- Loading branch information
brkzlr
authored
May 11, 2024
1 parent
76cbcf4
commit 3ac10ed
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |