From b8d3fa3a39d78679266448298abe5a5f0982131e Mon Sep 17 00:00:00 2001 From: Alexandre Couedelo Date: Mon, 26 Sep 2022 17:30:07 +0200 Subject: [PATCH] docs: archives.*.builds is type []string (#3406) The example creates an error because builds is supposed to be an array here is shown as a string ... ... ... --- www/docs/errors/multiple-binaries-archive.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/docs/errors/multiple-binaries-archive.md b/www/docs/errors/multiple-binaries-archive.md index a04b2d7c253..d850d87f429 100644 --- a/www/docs/errors/multiple-binaries-archive.md +++ b/www/docs/errors/multiple-binaries-archive.md @@ -36,10 +36,10 @@ From here on, you have a couple of options: ```yaml archives: - id: a1 - builds: b1 + builds: [b1] name_template: something-unique-for-a1 - id: a2 - builds: b2 + builds: [b2] name_template: something-unique-for-a2 ``` - if you really want to have the mixed archive, you can add