We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aa9ca3 commit 0b7e440Copy full SHA for 0b7e440
.github/workflows/ci.yml
@@ -45,9 +45,13 @@ jobs:
45
run: cargo build --release ${{ matrix.features }} --verbose
46
- name: Archive artifacts
47
uses: actions/upload-artifact@v4
48
- if: matrix.features == '--all-features'
+ if: matrix.features == '--all-features' && matrix.os == 'windows-latest'
49
with:
50
name: Binaries
51
- path: |
52
- target/release/KIT-ILIAS-downloader
53
- target/release/KIT-ILIAS-downloader.exe
+ path: target/release/KIT-ILIAS-downloader.exe
+ - name: Archive artifacts
+ 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