1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

fix(ci): lock utils versions

refs #1318

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker 2020-01-29 21:42:54 -03:00
parent 2b1e496c7c
commit 20d88f880b
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -8,9 +8,9 @@ export GOPROXY = https://proxy.golang.org,direct
# Install all the build and lint dependencies
setup:
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh
curl -sfL https://install.goreleaser.com/github.com/gohugoio/hugo.sh | sh
curl -L https://git.io/misspell | sh
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- v1.23.1
curl -sfL https://install.goreleaser.com/github.com/gohugoio/hugo.sh | sh -s -- v0.63.2
curl -sfL https://git.io/misspell | sh -s -- v0.3.4
go mod tidy
.PHONY: setup
@ -58,7 +58,7 @@ build:
# Generate the static documentation
static:
@hugo --enableGitInfo --source www
@./bin/hugo --enableGitInfo --source www
.PHONY: static
imgs:
@ -69,7 +69,7 @@ imgs:
.PHONY: imgs
serve: imgs
@hugo server --enableGitInfo --watch --source www
@./bin/hugo server --enableGitInfo --watch --source www
.PHONY: serve
# Show to-do items per file.