@@ -17,16 +17,15 @@ builds:
1717 # code entrypoint
1818 main : main.go
1919 # CLI flags for the 'go build' command
20- flags :
21- -v
20+ flags : -v
2221 ldflags :
2322 - -s -w
2423 - -X github.com/bryk-io/tred-cli/cmd.coreVersion={{.Version}}
2524 - -X github.com/bryk-io/tred-cli/cmd.buildCode={{.Commit}}
2625 - -X github.com/bryk-io/tred-cli/cmd.buildTimestamp={{.CommitDate}}
2726 # set the modified timestamp on the output binary to ensure a
2827 # reproducible build
29- mod_timestamp : ' {{ .CommitTimestamp }}'
28+ mod_timestamp : " {{ .CommitTimestamp }}"
3029 # disable CGO since it's not supported
3130 env :
3231 - CGO_ENABLED=0
@@ -48,7 +47,6 @@ builds:
4847archives :
4948 # a single project can produce multiple archives
5049 - name_template : " {{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
51- rlcp : true
5250 builds :
5351 # artifacts to pack
5452 - tredctl
@@ -60,7 +58,7 @@ archives:
6058 # include documentation files in the package for distribution
6159 - README.md
6260 - LICENSE*
63- - src : ' *.md'
61+ - src : " *.md"
6462 dst : docs
6563 strip_parent : true
6664# generate integrity checksums
@@ -72,7 +70,6 @@ checksum:
7270# https://goreleaser.com/customization/source/
7371source :
7472 enabled : true
75- rlcp : true
7673# produce test releases
7774# https://goreleaser.com/customization/snapshots/
7875snapshot :
@@ -81,7 +78,7 @@ snapshot:
8178# https://goreleaser.com/customization/release/#customize-the-changelog
8279changelog :
8380 # Sorts the changelog by the commit messages (asc, desc or '')
84- sort : ' '
81+ sort : " "
8582 # Remove certain commit messages from the changelog
8683 filters :
8784 # Standard commit messages can help to produce better changelogs
@@ -94,21 +91,20 @@ changelog:
9491# Produce homebrew formulas for the project artifacts
9592# https://goreleaser.com/customization/homebrew/
9693brews :
97- -
98- # Formula name
94+ - # Formula name
9995 name : tredctl
10096 # Push the formula to the tap repository
10197 skip_upload : " false"
10298 # TAP repository
103- tap :
99+ repository :
104100 owner : bryk-io
105101 name : homebrew-tap
106102 # Use 'github-actions' as commit author
107103 # https://github.community/t/github-actions-bot-email-address/17204
108104 commit_author :
109105 name : github-actions
110106 email : 41898282+github-actions[bot]@users.noreply.github.com
111- homepage : ' https://github.com/bryk-io/tred-cli'
107+ homepage : " https://github.com/bryk-io/tred-cli"
112108 description : |
113109 CLI client for the 'Tamper Resistant Encrypted Data' protocol.
114110 install : |
@@ -123,8 +119,7 @@ brews:
123119# linux packages
124120# https://goreleaser.com/customization/nfpm/
125121nfpms :
126- -
127- file_name_template : " {{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
122+ - file_name_template : " {{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
128123 builds :
129124 - tredctl
130125 vendor : Bryk Labs
0 commit comments