From 46c99acc758815958edee9c8af010937495c0947 Mon Sep 17 00:00:00 2001 From: Damglador Date: Sun, 29 Jun 2025 05:07:07 +0200 Subject: [PATCH] Fix releases Can't specify where linuxdeploy leaves the file without specifying the name of the file, which I don't want to do, so just move the file in `dist` after packaging. --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bde06b0b..67b0dfee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -105,7 +105,8 @@ jobs: -i icons/org.legoisland.Isle.svg \ --custom-apprun=../packaging/linux/appimage/AppRun \ --appdir packaging/linux/appimage/AppDir \ - --output appimage + --output appimage && \ + mv *.AppImage dist/ - name: Upload Artifact uses: actions/upload-artifact@main @@ -113,7 +114,7 @@ jobs: name: Release-${{ matrix.name }} path: | build/dist/isle-* - build/*.AppImage + build/dist/*.AppImage - name: Upload Artifact uses: actions/upload-artifact@main