diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a3353f5..e460b44 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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 @@ -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