Make the `build-args` description clearer - should be specified as;
```
build-args: |
KEY1=FOO
KEY2=BAR
```
and not like;
```
build-args: KEY1=FOO,KEY2=BAR
```
Signed-off-by: Joshua Greenhalgh <joshuadouglasgreenhalgh@gmail.com>
| `build-args` | List | List of [build-time variables](https://docs.docker.com/engine/reference/commandline/buildx_build/#build-arg) |
| `build-args` | List | List of [build-time variables](https://docs.docker.com/engine/reference/commandline/buildx_build/#build-arg) (e.g., key=string, GIT_AUTH_TOKEN=mytoken) - syntax as in the example above for `secrets` |
| `build-contexts` | List | List of additional [build contexts](https://docs.docker.com/engine/reference/commandline/buildx_build/#build-context) (e.g., `name=path`) |
| `cache-from` | List | List of [external cache sources](https://docs.docker.com/engine/reference/commandline/buildx_build/#cache-from) (e.g., `type=local,src=path/to/dir`) |
| `cache-to` | List | List of [cache export destinations](https://docs.docker.com/engine/reference/commandline/buildx_build/#cache-to) (e.g., `type=local,dest=path/to/dir`) |