From dfa5e52f771926c0f8e62c8ca8f590be4bd565c3 Mon Sep 17 00:00:00 2001 From: SolsticeSpectrum <38611351+SolsticeSpectrum@users.noreply.github.com> Date: Fri, 27 Sep 2024 10:45:23 +0200 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 737f1b7..d0f20b6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -155,10 +155,11 @@ jobs: Categories=Utility; EOL - # Use a generic icon (you may want to replace this with a custom icon later) + # Use the specified icon wget -O AppDir/wineglass.png http://test.winehq.org/tests/winehq_snapshot/index_files/winehq_logo_glass.png - ./appimagetool-x86_64.AppImage AppDir ${installer_name}_linux.AppImage + # Use ARCH environment variable when calling appimagetool + ARCH=x86_64 ./appimagetool-x86_64.AppImage AppDir ${installer_name}_linux.AppImage rm -rf AppDir } @@ -167,6 +168,12 @@ jobs: create_appimage rune create_appimage enderex + - name: Upload Linux AppImages + uses: actions/upload-artifact@v3 + with: + name: linux-appimages + path: ./*.AppImage + create-release: needs: [build-windows, build-linux] runs-on: ubuntu-latest