From 4807744d0664d1c1d404103d9629e662567da704 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sun, 25 Sep 2022 11:32:13 -0600 Subject: [PATCH] ci: give build artifacts better names with github.sha --- .github/workflows/cmake.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 4ac11926..eee59473 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -53,6 +53,7 @@ jobs: uses: actions/upload-artifact@v3 if: ${{ runner.os == 'Windows' && matrix.use-asan == 'NO' }} with: + name: ericw-tools-${{ github.sha }}-win64 path: | build-windows/ericw-tools-*.zip @@ -60,6 +61,7 @@ jobs: uses: actions/upload-artifact@v3 if: ${{ runner.os == 'Linux' && matrix.use-asan == 'NO' }} with: + name: ericw-tools-${{ github.sha }}-Linux path: | build-linux/ericw-tools-*.zip @@ -67,6 +69,7 @@ jobs: uses: actions/upload-artifact@v3 if: ${{ runner.os == 'macOS' && matrix.use-asan == 'NO' }} with: + name: ericw-tools-${{ github.sha }}-macOS path: | build-osx/ericw-tools-*.zip