Skip to content

Commit

Permalink
add appimage build
Browse files Browse the repository at this point in the history
  • Loading branch information
sun-jiao committed Feb 24, 2024
1 parent bb3a000 commit c675d7e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
run: flutter config --enable-linux-desktop
- name: Build artifacts
run: flutter build linux --release
- name: Build Appimage
run: bash ./github_appimage_build.sh
- name: Linux Release
uses: actions/upload-artifact@v4
with:
Expand Down
15 changes: 15 additions & 0 deletions github_appimage_build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
sudo apt install -y python3-pip python3-setuptools patchelf desktop-file-utils libgdk-pixbuf2.0-dev fakeroot strace fuse

# Install appimagetool AppImage
sudo wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O /usr/local/bin/appimagetool
sudo chmod +x /usr/local/bin/appimagetool

flutter build linux --release
cp -r ./build/linux/x64/release/bundle/ ./build/linux/x64/renamer.AppDir
cp -r ./appimage/renamer.desktop ./build/linux/x64/renamer.AppDir
cp -r ./assets/desktop.png ./build/linux/x64/renamer.AppDir
cp -r ./appimage/AppRun ./build/linux/x64/renamer.AppDir
chmod +x ./build/linux/x64/renamer.AppDir/AppRun
appimagetool ./build/linux/x64/renamer.AppDir
rm -rf ./build/linux/x64/renamer.AppDir
cp Renamer-x86_64.AppImage ./build/linux/x64/release/bundle/

0 comments on commit c675d7e

Please sign in to comment.