diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 76e0590..ac6cd7a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -47,8 +47,8 @@ jobs: ./linuxdeploy-x86_64.AppImage \ --appdir=$APP_DIR \ --output appimage \ - --desktop-file $APP_DIR/myapp.desktop \ - --icon-file $APP_DIR/myapp.png + --desktop-file=assets/desktop/myapp.desktop \ + --icon-file assets/images/myapp.png # Upload the AppImage as an artifact (optional) - name: Upload AppImage artifact diff --git a/assets/desktop/myapp.desktop b/assets/desktop/myapp.desktop new file mode 100644 index 0000000..4a1642e --- /dev/null +++ b/assets/desktop/myapp.desktop @@ -0,0 +1,6 @@ +[Desktop Entry] +Name=My Flutter App +Exec=./myapp +Icon=myapp +Type=Application +Categories=Utility; \ No newline at end of file diff --git a/assets/images/myapp.png b/assets/images/myapp.png new file mode 100644 index 0000000..d69c566 Binary files /dev/null and b/assets/images/myapp.png differ