From cec7f1393d1aecb0e6b8ebf356ce79059456b95b Mon Sep 17 00:00:00 2001 From: Michael Moore Date: Mon, 9 Dec 2024 09:57:42 -0600 Subject: [PATCH] ci: add explicit name to debug builds --- .github/workflows/debug-build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/debug-build.yml b/.github/workflows/debug-build.yml index 0635148..5532e27 100644 --- a/.github/workflows/debug-build.yml +++ b/.github/workflows/debug-build.yml @@ -14,14 +14,19 @@ jobs: include: - platform: 'macos-latest' # for Arm based macs (M1 and above). args: '--target aarch64-apple-darwin' + name: 'stellarmaps-dev-macos-arm' - platform: 'macos-latest' # for Intel based macs. args: '--target x86_64-apple-darwin' + name: 'stellarmaps-dev-macos-intel' - platform: 'ubuntu-22.04' args: '' + name: 'stellarmaps-dev-linux-webkitgtk' - platform: 'ubuntu-22.04' args: '-c src-tauri/tauri.electron-build.conf.json' + name: 'stellarmaps-dev-linux-electron' - platform: 'windows-latest' args: '' + name: 'stellarmaps-dev-windows' runs-on: ${{ matrix.platform }} steps: @@ -67,4 +72,4 @@ jobs: - uses: actions/upload-artifact@v4 with: path: "${{ join(fromJSON(steps.build.outputs.artifactPaths), '\n') }}" - name: 'stellarmaps-debug-${{ matrix.platform }}${{ matrix.args }}' + name: '${{ matrix.name }}'