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