From fdbe53d4e3d6d64c11974fe3e3bd68d7c148bdb6 Mon Sep 17 00:00:00 2001 From: Andrew Kahr <22359829+AndrewKahr@users.noreply.github.com> Date: Sun, 21 Jan 2024 02:13:44 -0800 Subject: [PATCH] Fix upload artifact naming conflict --- .github/workflows/build-tests-mac.yml | 2 +- .github/workflows/build-tests-ubuntu.yml | 2 +- .github/workflows/build-tests-windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-tests-mac.yml b/.github/workflows/build-tests-mac.yml index 73b01026..75722b29 100644 --- a/.github/workflows/build-tests-mac.yml +++ b/.github/workflows/build-tests-mac.yml @@ -74,6 +74,6 @@ jobs: ########################### - uses: actions/upload-artifact@v4 with: - name: Build MacOS (${{ matrix.unityVersion }}) + name: Build ${{ matrix.targetPlatform }} on MacOS (${{ matrix.unityVersion }}) path: build retention-days: 14 diff --git a/.github/workflows/build-tests-ubuntu.yml b/.github/workflows/build-tests-ubuntu.yml index bbd5e823..810a2e73 100644 --- a/.github/workflows/build-tests-ubuntu.yml +++ b/.github/workflows/build-tests-ubuntu.yml @@ -143,6 +143,6 @@ jobs: ########################### - uses: actions/upload-artifact@v4 with: - name: Build Ubuntu (${{ matrix.unityVersion }}) + name: Build ${{ matrix.targetPlatform }} on Ubuntu (${{ matrix.unityVersion }}) path: build retention-days: 14 diff --git a/.github/workflows/build-tests-windows.yml b/.github/workflows/build-tests-windows.yml index 40b00840..ec139eb9 100644 --- a/.github/workflows/build-tests-windows.yml +++ b/.github/workflows/build-tests-windows.yml @@ -127,6 +127,6 @@ jobs: ########################### - uses: actions/upload-artifact@v4 with: - name: Build Windows (${{ matrix.unityVersion }}) + name: Build ${{ matrix.targetPlatform }} on Windows (${{ matrix.unityVersion }}) path: build retention-days: 14