Open
Description
Feature Description
I want to use the a matrix value within the name of a step.
Something like this:
jobs:
build:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
strategy:
matrix:
include:
- docker-id: "example-a"
- docker-id: "example-b"
steps:
- name: Build and push Docker image ${{ matrix.docker-id }}
...
Currently the variable is not replaced with the value and is just displayed as is.
As reference: Github supports using a matrix variable name within the step name.