Skip to content

Commit

Permalink
Get rid of duplicate names for uploaded/downloaded artifacts on the CI (
Browse files Browse the repository at this point in the history
  • Loading branch information
Gedochao authored Dec 4, 2024
1 parent 2f0c7b8 commit 590d088
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/upload-artifact@v4
if: runner.os == 'Linux'
with:
name: launchers
name: jvm-launchers
path: artifacts/
if-no-files-found: error
retention-days: 2
Expand Down Expand Up @@ -1586,7 +1586,7 @@ jobs:
- run: ./mill -i ci.copyVcRedist
- uses: actions/upload-artifact@v4
with:
name: launchers
name: vc-redist-launchers
path: artifacts/
if-no-files-found: warn
retention-days: 2
Expand Down Expand Up @@ -1763,7 +1763,12 @@ jobs:
- uses: actions/download-artifact@v4
if: env.SHOULD_PUBLISH == 'true'
with:
name: launchers
name: jvm-launchers
path: artifacts/
- uses: actions/download-artifact@v4
if: env.SHOULD_PUBLISH == 'true'
with:
name: vc-redist-launchers
path: artifacts/
- run: ./mill -i uploadLaunchers artifacts/
if: env.SHOULD_PUBLISH == 'true'
Expand Down

0 comments on commit 590d088

Please sign in to comment.