Skip to content

Commit

Permalink
fix: fix get deps in the release-binaries pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel1302 authored Jun 14, 2022
1 parent 84a3acf commit 46ed247
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
GOOS: linux
GOARCH: ${{ matrix.arch }}
CGO_ENABLED: 0
GOPROXY: "${{ secrets.GOPROXY }}"
GO111MODULE: on
steps:
- name: Set up Go
uses: actions/setup-go@v2
Expand All @@ -29,7 +31,7 @@ jobs:
uses: actions/checkout@v2

- name: Get dependencies
run: go get -v -t -d ./...
run: go mod vendor

- name: Run tests
if: ${{ env.GOARCH == 'amd64' }}
Expand Down

0 comments on commit 46ed247

Please sign in to comment.