Skip to content

Commit d8c5ced

Browse files
committed
disambiguates artifact names in upload-artifact actions
Since v4 they all must have distinct names across all workflows.
1 parent b637902 commit d8c5ced

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
- uses: actions/upload-artifact@v4
4242
if: ${{ always() }}
4343
with:
44-
name: bap-log
44+
name: bap-log-full
4545
path: ~/.local/state/bap
4646

4747
- uses: actions/upload-artifact@v4
4848
if: ${{ always() }}
4949
with:
50-
name: fun-tests-log
50+
name: fun-tests-log-full
5151
path: |
5252
testsuite/*.log
5353
testsuite/logs

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,19 +71,19 @@ jobs:
7171
- uses: actions/upload-artifact@v4
7272
if: ${{ always() }}
7373
with:
74-
name: bap-log
74+
name: bap-log-${{ matrix.os }}-${{matrix.ocaml-compiler}}
7575
path: ~/.local/state/bap
7676

7777
- uses: actions/upload-artifact@v4
7878
if: ${{ always() }}
7979
with:
80-
name: unit-tests-log
80+
name: unit-tests-log-${{ matrix.os }}-${{matrix.ocaml-compiler}}
8181
path: _build/default/lib_test/*/oUnit-*.log
8282

8383
- uses: actions/upload-artifact@v4
8484
if: ${{ always() }}
8585
with:
86-
name: fun-tests-log
86+
name: fun-tests-log-${{ matrix.os }}-${{matrix.ocaml-compiler}}
8787
path: |
8888
testsuite/*.log
8989
testsuite/logs

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@ jobs:
6161
- uses: actions/upload-artifact@v4
6262
if: ${{ always() }}
6363
with:
64-
name: bap-log-${{ matrix.os }}-${{ matrix.ocaml-compiler }}
64+
name: bap-log-nightly-${{ matrix.os }}-${{ matrix.ocaml-compiler }}
6565
path: ~/.local/state/bap
6666

6767
- uses: actions/upload-artifact@v4
6868
if: ${{ always() }}
6969
with:
70-
name: unit-tests-log-${{ matrix.os }}-${{ matrix.ocaml-compiler }}
70+
name: unit-tests-log-nightly-${{ matrix.os }}-${{ matrix.ocaml-compiler }}
7171
path: _build/oUnit-*.log
7272

7373
- uses: actions/upload-artifact@v4
7474
if: ${{ always() }}
7575
with:
76-
name: fun-tests-log-${{ matrix.os }}-${{ matrix.ocaml-compiler }}
76+
name: fun-tests-log-nightly-${{ matrix.os }}-${{ matrix.ocaml-compiler }}
7777
path: |
7878
testsuite/*.log
7979
testsuite/logs

.github/workflows/oasis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ jobs:
8484
- uses: actions/upload-artifact@v4
8585
if: ${{ always() }}
8686
with:
87-
name: bap-log
87+
name: bap-log-oasis-${{ matrix.os }}-${{ matrix.ocaml-compiler }}
8888
path: ~/.local/state/bap
8989

9090
- uses: actions/upload-artifact@v4
9191
if: ${{ always() }}
9292
with:
93-
name: fun-tests-log
93+
name: fun-tests-log-oasis-${{ matrix.os }}-${{ matrix.ocaml-compiler }}
9494
path: |
9595
testsuite/*.log
9696
testsuite/logs

.github/workflows/weekly-regress.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@ jobs:
5353
- uses: actions/upload-artifact@v4
5454
if: ${{ always() }}
5555
with:
56-
name: opam-log-${{ matrix.ocaml-compiler }}
56+
name: opam-log-weekly-${{ matrix.ocaml-compiler }}
5757
path: ~/.opam/log
5858

5959
- uses: actions/upload-artifact@v4
6060
if: ${{ always() }}
6161
with:
62-
name: bap-log-${{ matrix.ocaml-compiler }}
62+
name: bap-log-weekly-${{ matrix.ocaml-compiler }}
6363
path: ~/.local/state/bap
6464

6565
- uses: actions/upload-artifact@v4
6666
if: ${{ always() }}
6767
with:
68-
name: fun-tests-log-${{ matrix.ocaml-compiler }}
68+
name: fun-tests-log-weekly-${{ matrix.ocaml-compiler }}
6969
path: |
7070
testsuite/*.log
7171
testsuite/logs

0 commit comments

Comments
 (0)