Use the full container tag name as job name (e. g. `ubuntu:devel-amd`).
This is shorter and easy to read.
jobs:
container-extra:
if: github.repository == 'dracut-ng/dracut-ng' || vars.CONTAINER == 'enabled'
- name: ${{ matrix.config.tag }} on ${{ matrix.architecture.platform }}
+ name: ${{ matrix.config.tag }}-${{ matrix.architecture.tag }}
runs-on: ${{ matrix.architecture.runner }}
concurrency:
- group: container-extra-${{ github.workflow }}-${{ github.ref }}-${{ matrix.config.tag }}-${{ matrix.architecture.platform }}
+ group: container-extra-${{ github.workflow }}-${{ github.ref }}-${{ matrix.config.tag }}-${{ matrix.architecture.tag }}
cancel-in-progress: true
strategy:
fail-fast: false
jobs:
container:
if: github.repository == 'dracut-ng/dracut-ng' || vars.CONTAINER == 'enabled'
- name: ${{ matrix.config.tag }} on ${{ matrix.architecture.platform }}
+ name: ${{ matrix.config.tag }}-${{ matrix.architecture.tag }}
concurrency:
- group: container-${{ github.workflow }}-${{ github.ref }}-${{ matrix.config.tag }}-${{ matrix.architecture.platform }}
+ group: container-${{ github.workflow }}-${{ github.ref }}-${{ matrix.config.tag }}-${{ matrix.architecture.tag }}
cancel-in-progress: true
strategy:
fail-fast: false