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.
This commit is contained in:
Damglador 2025-06-29 05:07:07 +02:00
parent 467caacb77
commit 46c99acc75

View File

@ -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