Skip to content

Commit

Permalink
ci: fix artifact upload
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst committed Nov 9, 2024
1 parent 2aa9ca3 commit 0b7e440
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,13 @@ jobs:
run: cargo build --release ${{ matrix.features }} --verbose
- name: Archive artifacts
uses: actions/upload-artifact@v4
if: matrix.features == '--all-features'
if: matrix.features == '--all-features' && matrix.os == 'windows-latest'
with:
name: Binaries
path: |
target/release/KIT-ILIAS-downloader
target/release/KIT-ILIAS-downloader.exe
path: target/release/KIT-ILIAS-downloader.exe
- name: Archive artifacts
uses: actions/upload-artifact@v4
if: matrix.features == '--all-features' && matrix.os == 'ubuntu-latest'
with:
name: Binaries
path: target/release/KIT-ILIAS-downloader

0 comments on commit 0b7e440

Please sign in to comment.