Skip to content

Commit

Permalink
fix(ci): lock utils versions
Browse files Browse the repository at this point in the history
refs #1318

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
  • Loading branch information
caarlos0 committed Jan 30, 2020
1 parent 2b1e496 commit 20d88f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Expand Up @@ -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

Expand Down Expand Up @@ -58,7 +58,7 @@ build:

# Generate the static documentation
static:
@hugo --enableGitInfo --source www
@./bin/hugo --enableGitInfo --source www
.PHONY: static

imgs:
Expand All @@ -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.
Expand Down

0 comments on commit 20d88f8

Please sign in to comment.