diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd47469..27370d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,9 +19,6 @@ jobs: - os: ubuntu-22.04 target: x86_64-unknown-linux-gnu artifact_name: byte-me-linux-x86_64 - - os: ubuntu-22.04 - target: x86_64-unknown-linux-musl - artifact_name: byte-me-linux-x86_64-musl - os: windows-latest target: x86_64-pc-windows-msvc artifact_name: byte-me-windows-x86_64 @@ -116,6 +113,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{ matrix.artifact_name }} - # on all but windows, the artifact_extension is empty - path: src-tauri/target/${{ matrix.target }}/release/byte-me${{ matrix.artifact_extension }} + path: | + src-tauri/target/${{ matrix.target }}/release/byte-me${{ matrix.artifact_extension }} + src-tauri/target/${{ matrix.target }}/release/bundle/**/* if-no-files-found: error