ci: use system as build name

This commit is contained in:
Matt Sturgeon 2025-05-25 23:55:11 +01:00
parent 920f15638e
commit 73ca23dd44
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
2 changed files with 1 additions and 5 deletions

View file

@ -3,9 +3,6 @@ name: Build
on:
workflow_call:
inputs:
name:
required: true
type: string
builds:
description: "json array of builds: [ { system, runner, attr } ]"
required: true
@ -17,7 +14,7 @@ on:
jobs:
build:
name: ${{ inputs.name }} (${{ matrix.attr }})
name: (${{ matrix.system }})
runs-on:
- ${{ matrix.runner }}
strategy:

View file

@ -41,5 +41,4 @@ jobs:
include: ${{ fromJSON(needs.prepare.outputs.matrix) }}
secrets: inherit
with:
name: ${{ matrix.name }}
builds: ${{ toJSON(matrix.builds) }}