mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-26 04:22:05 +02:00
21 lines
263 B
Markdown
21 lines
263 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
|
||
|
```
|