-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: AppImage release build (#245)
Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
- Loading branch information
1 parent
7fbad0b
commit cfcedbc
Showing
4 changed files
with
98 additions
and
13 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
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
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
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,31 @@ | ||
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details | ||
# appimage-builder --recipe AppImageBuilder.yml | ||
# wget -O appimage-builder-x86_64.AppImage https://github.com/AppImageCrafters/appimage-builder/releases/download/v1.1.0/appimage-builder-1.1.0-x86_64.AppImage | ||
# chmod +x appimage-builder-x86_64.AppImage | ||
|
||
# # install (optional) | ||
# sudo mv appimage-builder-x86_64.AppImage /usr/local/bin/appimage-builder | ||
version: 1 | ||
script: | ||
- rm -rf AppDir || true | ||
- cp -r build/linux/x64/release/bundle AppDir | ||
- mkdir -p AppDir/usr/share/icons/ | ||
- cp icons/production/fladder_icon_desktop.png AppDir/usr/share/icons/ | ||
AppDir: | ||
path: ./AppDir | ||
app_info: | ||
id: nl.jknaapen.fladder | ||
name: Fladder | ||
icon: fladder_icon_desktop | ||
version: latest | ||
exec: Fladder | ||
exec_args: $@ | ||
files: | ||
include: | ||
- assets/fonts/rubik/Rubik-Italic-VariableFont_wght.ttf | ||
- assets/fonts/rubik/Rubik-VariableFont_wght.ttf | ||
- icons/production/fladder_icon_desktop.png | ||
AppImage: | ||
arch: x86_64 | ||
update-information: gh-releases-zsync|DonutWare|Fladder|latest|Fladder-Linux-*.AppImage.zsync | ||
file_name: Fladder_x86_64.AppImage |