Skip to content

Commit 590d088

Browse files
authored
Get rid of duplicate names for uploaded/downloaded artifacts on the CI (#3342)
1 parent 2f0c7b8 commit 590d088

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/upload-artifact@v4
3434
if: runner.os == 'Linux'
3535
with:
36-
name: launchers
36+
name: jvm-launchers
3737
path: artifacts/
3838
if-no-files-found: error
3939
retention-days: 2
@@ -1586,7 +1586,7 @@ jobs:
15861586
- run: ./mill -i ci.copyVcRedist
15871587
- uses: actions/upload-artifact@v4
15881588
with:
1589-
name: launchers
1589+
name: vc-redist-launchers
15901590
path: artifacts/
15911591
if-no-files-found: warn
15921592
retention-days: 2
@@ -1763,7 +1763,12 @@ jobs:
17631763
- uses: actions/download-artifact@v4
17641764
if: env.SHOULD_PUBLISH == 'true'
17651765
with:
1766-
name: launchers
1766+
name: jvm-launchers
1767+
path: artifacts/
1768+
- uses: actions/download-artifact@v4
1769+
if: env.SHOULD_PUBLISH == 'true'
1770+
with:
1771+
name: vc-redist-launchers
17671772
path: artifacts/
17681773
- run: ./mill -i uploadLaunchers artifacts/
17691774
if: env.SHOULD_PUBLISH == 'true'

0 commit comments

Comments
 (0)