@@ -126,7 +126,8 @@ jobs:
126126 id: meta
127127 uses: docker/metadata-action@v3
128128 with:
129- images: name/app
129+ images: |
130+ name/app
130131 tags: |
131132 type=ref,event=branch
132133 type=ref,event=pr
@@ -203,7 +204,8 @@ jobs:
203204 id: meta
204205 uses: docker/metadata-action@v3
205206 with:
206- images: name/app
207+ images: |
208+ name/app
207209 tags: |
208210 type=ref,event=branch
209211 type=ref,event=pr
@@ -265,31 +267,26 @@ Following inputs can be used as `step.with` keys
265267> org.opencontainers.image.vendor=MyCompany
266268> ```
267269
268- > `CSV` type is a comma-delimited string
269- > ```yaml
270- > images: name/app,ghcr.io/name/app
271- > ```
272-
273- | Name | Type | Description |
274- |---------------------|----------|------------------------------------|
275- | `images` | List/CSV | List of Docker images to use as base name for tags |
276- | `tags` | List | List of [tags](#tags-input) as key-value pair attributes |
277- | `flavor` | List | [Flavor](#flavor-input) to apply |
278- | `labels` | List | List of custom labels |
279- | `sep-tags` | String | Separator to use for tags output (default `\n`) |
280- | `sep-labels` | String | Separator to use for labels output (default `\n`) |
281- | `bake-target` | String | Bake target name (default `docker-metadata-action`) |
270+ | Name | Type | Description |
271+ |---------------------|--------|----------------------------------------------------------|
272+ | `images` | List | List of Docker images to use as base name for tags |
273+ | `tags` | List | List of [tags](#tags-input) as key-value pair attributes |
274+ | `flavor` | List | [Flavor](#flavor-input) to apply |
275+ | `labels` | List | List of custom labels |
276+ | `sep-tags` | String | Separator to use for tags output (default `\n`) |
277+ | `sep-labels` | String | Separator to use for labels output (default `\n`) |
278+ | `bake-target` | String | Bake target name (default `docker-metadata-action`) |
282279
283280# ## outputs
284281
285282Following outputs are available
286283
287- | Name | Type | Description |
288- |---------------|---------|---------------------------------------|
289- | `version` | String | Docker image version |
290- | `tags` | String | Docker tags |
291- | `labels` | String | Docker labels |
292- | `json` | String | JSON output of tags and labels |
284+ | Name | Type | Description |
285+ |---------------|---------|------------------------------------------------------------------------------- |
286+ | `version` | String | Docker image version |
287+ | `tags` | String | Docker tags |
288+ | `labels` | String | Docker labels |
289+ | `json` | String | JSON output of tags and labels |
293290| `bake-file` | File | [Bake definition file](https://github.com/docker/buildx#file-definition) path |
294291
295292# # `images` input
0 commit comments