From 4c119d46fc3f4da7a037b449c6f8fc206c17bfee Mon Sep 17 00:00:00 2001 From: Thomas Renes Date: Wed, 1 Nov 2023 10:32:01 +0000 Subject: [PATCH] Fix separator for tags_file in docs (#107) This fixes an error in the documentation. Multiple tags in tags_file are separated by a newline instead of a comma. See: https://codeberg.org/woodpecker-plugins/docker-buildx/src/commit/5116f6263fca781c3702afacd8f407101f8eafab/plugin/impl.go#L138 Reviewed-on: https://codeberg.org/woodpecker-plugins/docker-buildx/pulls/107 Reviewed-by: Patrick Schratz Co-authored-by: Thomas Renes Co-committed-by: Thomas Renes --- docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs.md b/docs.md index f323410..6385107 100644 --- a/docs.md +++ b/docs.md @@ -103,7 +103,7 @@ If it's not a tag event, and no default branch, automated tags are skipped. | `daemon_off` | `false` | disables the startup of the docker daemon | `buildkit_config` | *none* | sets content of the docker [buildkit TOML config](https://github.com/moby/buildkit/blob/master/docs/buildkitd.toml.md) | `buildkit_driveropt` | *none* | adds one or multiple `--driver-opt` buildx arguments for the default buildkit builder instance -| `tags_file` | *none* | overrides the `tags` option with values in a file named `.tags`; multiple tags can be specified separated by a comma +| `tags_file` | *none* | overrides the `tags` option with values in a file named `.tags`; multiple tags can be specified separated by a newline | `context` | `.` | sets the path of the build context to use | `auto_tag` | `false` | generates tag names automatically based on git branch and git tag, tags supplied via `tags` are additionally added to the auto_tags without suffix | `default_suffix"`/`auto_tag_suffix`| *none* | generates tag names with the given suffix