Skip to content

Commit f8ab447

Browse files
author
Craig Furman
authored
fix go-generate command in goreleaser config (#1085)
golang/go#60079 changed the behavior of go-generate when the target package does not exist. It used to silently succeeed, now it errors. The schema package was removed in 2021.
1 parent f29ca46 commit f8ab447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ before:
1010
hooks:
1111
- go mod download
1212
- go mod tidy
13-
- go generate ./schema
13+
- go generate ./...
1414
builds:
1515
-
1616
main: ./cmd/src/

0 commit comments

Comments
 (0)