Skip to content

Commit 0b7e440

Browse files
ci: fix artifact upload
1 parent 2aa9ca3 commit 0b7e440

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,13 @@ jobs:
4545
run: cargo build --release ${{ matrix.features }} --verbose
4646
- name: Archive artifacts
4747
uses: actions/upload-artifact@v4
48-
if: matrix.features == '--all-features'
48+
if: matrix.features == '--all-features' && matrix.os == 'windows-latest'
4949
with:
5050
name: Binaries
51-
path: |
52-
target/release/KIT-ILIAS-downloader
53-
target/release/KIT-ILIAS-downloader.exe
51+
path: target/release/KIT-ILIAS-downloader.exe
52+
- name: Archive artifacts
53+
uses: actions/upload-artifact@v4
54+
if: matrix.features == '--all-features' && matrix.os == 'ubuntu-latest'
55+
with:
56+
name: Binaries
57+
path: target/release/KIT-ILIAS-downloader

0 commit comments

Comments
 (0)