File tree Expand file tree Collapse file tree 1 file changed +20
-4
lines changed Expand file tree Collapse file tree 1 file changed +20
-4
lines changed Original file line number Diff line number Diff line change 1
1
# This is an example .goreleaser.yml file with some sensible defaults.
2
2
# Make sure to check the documentation at https://goreleaser.com
3
- version : 2
4
3
4
+ version : 2
5
5
dist : _output
6
6
snapshot :
7
7
version_template : ' {{ incpatch .Version }}-next'
@@ -41,10 +41,26 @@ archives:
41
41
- CHANGELOG/**
42
42
# Can be used to change the archive formats for specific GOOSs.
43
43
# Most common use case is to archive as zip on Windows.
44
- # Default is empty.
45
44
format_overrides :
46
- - goos : windows
47
- format : [ 'zip' ]
45
+ - # Which GOOS to override the format for.
46
+ goos : windows
47
+
48
+ # The formats to use for the given GOOS.
49
+ #
50
+ # Valid options are:
51
+ # - `tar.gz`
52
+ # - `tgz`
53
+ # - `tar.xz`
54
+ # - `txz`
55
+ # - `tar.zst`
56
+ # - `tzst` # Since: v2.1.
57
+ # - `tar`
58
+ # - `gz`
59
+ # - `zip`
60
+ # - `binary` # be extra-cautious with the file name template in this case!
61
+ # - `none` # skips this archive
62
+ #
63
+ formats : ["zip"] # Plural form, multiple formats. Since: v2.6
48
64
checksum :
49
65
name_template : ' CHECKSUM'
50
66
changelog :
You can’t perform that action at this time.
0 commit comments