We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db4dfc4 commit def97dcCopy full SHA for def97dc
.github/workflows/docker-multiarch.yaml
@@ -134,6 +134,13 @@ jobs:
134
path: /tmp/digests
135
merge-multiple: true
136
137
+ # Resolve {{name}}/{{suffix}}/{{is_latest}}/{{is_variant}} placeholders.
138
+ # Why bash-substitution instead of GHA's `${{ matrix.* }}`:
139
+ # GHA evaluates expressions in a caller's `with:` inputs at CALLER scope,
140
+ # where `matrix` is undefined (the matrix lives inside this reusable
141
+ # workflow, not in the caller). Passing `${{ matrix.variant.x }}` from a
142
+ # caller therefore fails workflow parse. Placeholders let the caller
143
+ # write template strings that this job resolves at matrix-expansion time.
144
- name: Resolve tag rules
145
id: tagrules
146
env:
0 commit comments