Skip to content

Commit c23eabc

Browse files
fix: update artifact upload paths for dummy mode handling
1 parent acde3e8 commit c23eabc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ jobs:
142142
- name: Upload AIBOM artifacts
143143
uses: actions/upload-artifact@v4
144144
with:
145-
name: aibom-${{ matrix.fixture }}-${{ matrix.format }}-${{ matrix.hf-mode }}
146-
path: dist/integration/${{ matrix.fixture }}/${{ matrix.format }}/${{ matrix.hf-mode }}
145+
name: aibom-${{ matrix.hf-mode == 'dummy' && 'no-input' || matrix.fixture }}-${{ matrix.format }}-${{ matrix.hf-mode }}
146+
path: dist/integration/${{ matrix.hf-mode == 'dummy' && 'no-input' || matrix.fixture }}/${{ matrix.format }}/${{ matrix.hf-mode }}
147147
if-no-files-found: error
148148

149149
- name: Upload validator reports
150150
uses: actions/upload-artifact@v4
151151
with:
152-
name: validator-${{ matrix.fixture }}-${{ matrix.format }}-${{ matrix.hf-mode }}
153-
path: reports/${{ matrix.fixture }}/${{ matrix.format }}/${{ matrix.hf-mode }}
152+
name: validator-${{ matrix.hf-mode == 'dummy' && 'no-input' || matrix.fixture }}-${{ matrix.format }}-${{ matrix.hf-mode }}
153+
path: reports/${{ matrix.hf-mode == 'dummy' && 'no-input' || matrix.fixture }}/${{ matrix.format }}/${{ matrix.hf-mode }}
154154
if-no-files-found: error

0 commit comments

Comments
 (0)