From a460c1dc83eeeb4ff784ea358894765c700348c4 Mon Sep 17 00:00:00 2001 From: Trent Houliston Date: Fri, 30 Aug 2024 22:52:54 +1000 Subject: [PATCH] Better names --- .github/workflows/gcc.yaml | 2 +- .github/workflows/macos.yaml | 2 +- .github/workflows/windows.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gcc.yaml b/.github/workflows/gcc.yaml index ddedd5d6..d1200508 100644 --- a/.github/workflows/gcc.yaml +++ b/.github/workflows/gcc.yaml @@ -99,7 +99,7 @@ jobs: if: always() uses: actions/upload-artifact@v4 with: - name: traces + name: traces-gcc-${{ matrix.toolchain.version }} path: build/tests/**/*.trace retention-days: 1 # This sets the artifact TTL to 1 day (minimum is 1 day) overwrite: true diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index d508c2f7..cc949da1 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -67,7 +67,7 @@ jobs: if: always() uses: actions/upload-artifact@v4 with: - name: traces + name: traces-macos path: build/tests/**/*.trace retention-days: 1 # This sets the artifact TTL to 1 day (minimum is 1 day) overwrite: true diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index fc3e8721..9f72fb49 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -86,7 +86,7 @@ jobs: if: always() uses: actions/upload-artifact@v4 with: - name: traces + name: traces-windows-${{ matrix.toolchain.name }} path: build/tests/**/*.trace retention-days: 1 # This sets the artifact TTL to 1 day (minimum is 1 day) overwrite: true