From 7eae1a4d1fd84e87eb31ea263d0df838cce8fa1b Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Tue, 15 Apr 2025 11:37:50 +0000 Subject: [PATCH] [Github][CI] Name premerge artifacts per OS This patch renames premerge artifacts per OS. Without this, the premerge artifacts will conflict with each other and the slower running job will fail to upload the artifact. --- .github/workflows/premerge.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml index ebb8df094244..dd442dc636c0 100644 --- a/.github/workflows/premerge.yaml +++ b/.github/workflows/premerge.yaml @@ -69,7 +69,7 @@ jobs: - name: Upload Artifacts uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: - name: Premerge Artifacts + name: Premerge Artifacts (Linux) path: artifacts/ retention-days: 5 include-hidden-files: 'true' @@ -124,7 +124,7 @@ jobs: - name: Upload Artifacts uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: - name: Premerge Artifacts + name: Premerge Artifacts (Windows) path: artifacts/ retention-days: 5 include-hidden-files: 'true'