workflows/reusable.yaml: Add more names

Add

jobs.test.name: Packaging test - ${{ matrix.distro.name }} jobs.test.steps.name: Run packaging test on ${{ matrix.distro.name }} jobs.test.steps.uses.with.distro-name: ${{ matrix.distro.name }}

In the hope that this makes the logs look nicer.

Quoting from https://forgejo.org/docs/latest/user/actions/reference/

NOTE: if jobs.<job_id>.name is set, care must be taken that it evaluates to a unique name for each job created from the matrix, e.g. name-${{ matrix.variant }}-${{ matrix.node}} in the above example.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-06-02 14:03:34 +02:00
commit 964a71a86e
Signed by: Jan Lindemann
GPG key ID: 3750640C9E25DD61

View file

@ -5,6 +5,7 @@ on:
jobs: jobs:
test: test:
name: Packaging test - ${{ matrix.distro.name }}
runs-on: public-ci runs-on: public-ci
strategy: strategy:
fail-fast: false fail-fast: false
@ -17,4 +18,7 @@ jobs:
image: ${{ matrix.distro.image }} image: ${{ matrix.distro.image }}
steps: steps:
- uses: ci/action-build-package@master - name: Run packaging test on ${{ matrix.distro.name }}
uses: ci/action-build-package@master
with:
distro-name: ${{ matrix.distro.name }}