3434 shell : bash
3535 run : |
3636 if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then
37- ./gradlew composeApp:packageReleaseDeb --info --stacktrace
37+ ./gradlew composeApp:packageReleaseDeb composeApp:packageReleaseAppImage --info --stacktrace
3838 elif [[ "${{ matrix.os }}" == "windows-latest" ]]; then
39- ./gradlew composeApp:packageReleaseMsi --info --stacktrace
39+ ./gradlew composeApp:packageReleaseMsi composeApp:packageReleaseExe --info --stacktrace
4040 elif [[ "${{ matrix.os }}" == "macos-latest" ]]; then
4141 ./gradlew composeApp:packageReleaseDmg --info --stacktrace
4242 fi
4747 name : dalvikus-${{ matrix.os }}
4848 path : |
4949 composeApp/build/compose/binaries/**/*.deb
50+ composeApp/build/compose/binaries/**/*.AppImage
5051 composeApp/build/compose/binaries/**/*.msi
52+ composeApp/build/compose/binaries/**/*.exe
5153 composeApp/build/compose/binaries/**/*.dmg
5254
5355 release :
@@ -61,12 +63,14 @@ jobs:
6163 - name : Download all installer artifacts
6264 uses : actions/download-artifact@v4
6365 with :
64- path : artifacts # All artifacts will be downloaded into this directory
66+ path : artifacts # All artifacts downloaded here
6567
6668 - name : Create Release
6769 uses : softprops/action-gh-release@v2
6870 with :
6971 files : |
7072 artifacts/dalvikus-ubuntu-latest/**/*.deb
73+ artifacts/dalvikus-ubuntu-latest/**/*.AppImage
7174 artifacts/dalvikus-windows-latest/**/*.msi
72- artifacts/dalvikus-macos-latest/**/*.dmg
75+ artifacts/dalvikus-windows-latest/**/*.exe
76+ artifacts/dalvikus-macos-latest/**/*.dmg
0 commit comments