We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c0dc83 commit 823ff05Copy full SHA for 823ff05
.github/workflows/generic_build.yml
@@ -171,7 +171,15 @@ jobs:
171
172
# Add labels to a new container...
173
container="$( buildah from "${image_id}" )"
174
- # buildah config ${LABELS[@]} "${container}"
+
175
+ # FIXME: Test out different options
176
+ declare -a mycmd=( buildah config ${LABELS[@]} "${container}" )
177
+ echo "Label args: " "${LABELS[@]}"
178
+ echo "Label args with @Q: " "${LABELS[@]@Q}"
179
+ echo "Label command: " "${mycmd[@]}"
180
+ echo "Label command with @Q: " "${mycmd[@]@Q}"
181
182
+ buildah config "${LABELS[@]}" "${container}"
183
184
# ...then store the container (now with labels) as a new image. This
185
# is what we'll use to upload.
0 commit comments