Use go install for build deps

Previous `go get` method of installation was causing issues with
`goversiontool`, preventing successful CI builds.

Signed-off-by: Ben Reedy <breed808@breed808.com>
This commit is contained in:
Ben Reedy
2022-04-07 08:23:28 +10:00
parent 791df8009c
commit 02e2e257c9

View File

@@ -128,8 +128,8 @@ jobs:
- name: Install Build deps
run: |
dotnet tool install --global GitVersion.Tool --version 5.*
go get "github.com/prometheus/promu@$($Env:PROMU_VER)"
go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo@v1.2.0
go install "github.com/prometheus/promu@$($Env:PROMU_VER)"
go install github.com/josephspurrier/goversioninfo/cmd/goversioninfo@v1.4.0
# GOPATH\bin dir must be added to PATH else the `promu` and `goversioninfo` commands won't be found
echo "$(go env GOPATH)\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append