Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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

<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

Also, add tests and the respective documentation changes as well.

-->


<!-- If applied, this commit will... -->

...

<!-- Why is this change being made? -->

...

<!-- # Provide links to any relevant tickets, URLs or other resources
-->

...
  • Loading branch information
xNok committed Sep 26, 2022
1 parent 84d0bfe commit b8d3fa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/docs/errors/multiple-binaries-archive.md
Expand Up @@ -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
Expand Down

0 comments on commit b8d3fa3

Please sign in to comment.