Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
LNA-DEV committed Oct 24, 2024
1 parent 14349d3 commit 96fbcef
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
- name: Install AppImage and Linux dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libblkid-dev e2fslibs-dev liblzma-dev libmpv-dev mpv ninja-build fuse appimagetool
sudo apt-get install -y libgtk-3-dev libblkid-dev e2fslibs-dev liblzma-dev libmpv-dev mpv ninja-build fuse
wget https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage
chmod +x ./appimagetool-x86_64.AppImage
# Fetch Flutter dependencies
- name: Install Flutter dependencies
Expand All @@ -49,7 +52,7 @@ jobs:

# Package the built Linux app into an AppImage
- name: Create AppImage
run: appimagetool --appdir=build/linux/x64/release/bundle AppImage.AppImage
run: ./appimagetool-x86_64.AppImage --appdir=build/linux/x64/release/bundle AppImage.AppImage

# Upload the AppImage as an artifact (optional)
- name: Upload AppImage artifact
Expand Down

0 comments on commit 96fbcef

Please sign in to comment.