From bac344d0592e42a9e781ff73e1fa27fe86687c07 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Mon, 21 Apr 2025 13:33:34 +0100 Subject: [PATCH] ci: For Linux, only move AppImage to artifacts directory Closes #795 --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c11acb71c..f4a53eb00 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,9 +49,11 @@ jobs: ${{ runner.os }}-${{ matrix.target }}- - name: Build run: ./.ci/linux.sh - - name: Pack + - name: Move AppImage to artifacts directory if: ${{ matrix.target == 'appimage' }} - run: ./.ci/pack.sh + run: | + mkdir -p artifacts + mv build/bundle/*.AppImage artifacts/ - name: Upload if: ${{ matrix.target == 'appimage' }} uses: actions/upload-artifact@v4