Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions content/actions/reference/workflows-and-actions/contexts.md
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,9 @@ For workflows with a matrix, the `matrix` context contains the matrix properties

There are no standard properties in the `matrix` context, only those which are defined in the workflow file.

> [!NOTE]
> **Case sensitivity:** Matrix property names are case-sensitive. If you define `arch` in your matrix, you must reference `matrix.arch` (not `matrix.Arch`) to access its value.

| Property name | Type | Description |
|---------------|------|-------------|
| `matrix` | `object` | This context is only available for jobs in a matrix, and changes for each job in a workflow run. You can access this context from any job or step in a workflow. This object contains the properties listed below. |
Expand Down
Loading