ci: For Linux, only move AppImage to artifacts directory

Closes #795
This commit is contained in:
OpenSauce04 2025-04-21 13:33:34 +01:00
parent 0051182338
commit bac344d059

View File

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