ci: For Linux, only move AppImage to artifacts directory
Some checks failed
citra-format / clang-format (push) Has been cancelled
citra-build / source (push) Has been cancelled
citra-build / linux (appimage) (push) Has been cancelled
citra-transifex / transifex (push) Has been cancelled
citra-build / linux (fresh) (push) Has been cancelled
citra-build / macos (arm64) (push) Has been cancelled
citra-build / macos (x86_64) (push) Has been cancelled
citra-build / windows (msvc) (push) Has been cancelled
citra-build / windows (msys2) (push) Has been cancelled
citra-build / android (push) Has been cancelled
citra-build / ios (push) Has been cancelled
citra-build / macos-universal (push) Has been cancelled

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