Skip to content

Commit eb3955a

Browse files
authored
ci: accommodate go1.16 changes to go mod (#4102)
As of go1.16, the `go` commands will no longer make automatic changes to go.{mod,sum} files (see: https://blog.golang.org/go116-module-changes). This broke the release script which relied on `go mod download` and/or `go build` to automatically generate the go.sum file. This commit explicitly invokes `go mod tidy` to have the go.sum file generated.
1 parent d21e88a commit eb3955a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.goreleaser.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ before:
1111
# GoReleaser doesn't seem to offer {{.Tag}} at this stage, so we have to embed it into the env
1212
# so we run: TAG=$(git describe --abbrev=0) goreleaser release --rm-dist --skip-publish --skip-validate
1313
- go mod edit -require=github.com/caddyserver/caddy/v2@{{.Env.TAG}} ./caddy-build/go.mod
14+
# as of Go 1.16, `go` commands no longer automatically change go.{mod,sum}. We now have to explicitly
15+
# run `go mod tidy`. The `/bin/sh -c '...'` is because goreleaser can't find cd in PATH without shell invocation.
16+
- /bin/sh -c 'cd ./caddy-build && go mod tidy'
1417
- git clone --depth 1 https://github.com/caddyserver/dist caddy-dist
1518
- go mod download
1619

0 commit comments

Comments
 (0)