mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
37e92ce2f1
improve error message and related docs Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
24 lines
380 B
Markdown
24 lines
380 B
Markdown
# Scoop requires a windows archive
|
|
|
|
The Scoop pipe requires a Windows build and archive.
|
|
|
|
The archive should not be in `binary` format.
|
|
|
|
For instance, this won't work:
|
|
|
|
```yaml
|
|
archives:
|
|
- format: binary
|
|
```
|
|
|
|
|
|
But this would:
|
|
|
|
```yaml
|
|
archives:
|
|
- format: zip
|
|
```
|
|
|
|
Also notice the `goamd64` options, it must match the one from your build.
|
|
By default, only `GOAMD64` `v1` is built.
|