Skip to content

Commit 56881df

Browse files
Fix artifact name collisions in GitHub Actions workflow (#210)
Co-authored-by: Aaron R Robinson <arobins@microsoft.com>
1 parent 9f1bc9e commit 56881df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: failure()
4040
uses: actions/upload-artifact@v4
4141
with:
42-
name: unittest.${{ matrix.flavor }}.binlog
42+
name: unittest.linux.${{ matrix.flavor }}.binlog
4343
path: unittest.${{ matrix.flavor }}.binlog
4444
- name: Upload Package
4545
uses: actions/upload-artifact@v4
@@ -75,7 +75,7 @@ jobs:
7575
if: failure()
7676
uses: actions/upload-artifact@v4
7777
with:
78-
name: unittest.${{ matrix.flavor }}.binlog
78+
name: unittest.windows.${{ matrix.flavor }}.binlog
7979
path: unittest.${{ matrix.flavor }}.binlog
8080

8181
macos:
@@ -102,5 +102,5 @@ jobs:
102102
if: failure()
103103
uses: actions/upload-artifact@v4
104104
with:
105-
name: unittest.${{ matrix.flavor }}.binlog
105+
name: unittest.macos.${{ matrix.flavor }}.binlog
106106
path: unittest.${{ matrix.flavor }}.binlog

0 commit comments

Comments
 (0)