Skip to content

Commit

Permalink
ci: add explicit name to debug builds
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelMakesGames committed Dec 9, 2024
1 parent fdfc019 commit cec7f13
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/debug-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}'

0 comments on commit cec7f13

Please sign in to comment.