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:
parent
74f5f55aac
commit
964a71a86e
1 changed files with 5 additions and 1 deletions
6
.github/workflows/reusable.yaml
vendored
6
.github/workflows/reusable.yaml
vendored
|
|
@ -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 }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue