From 59b0e2d70aea286f8f0948cc877c1920e8826358 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Fri, 20 Mar 2020 14:30:15 +0100 Subject: [PATCH] Add GOBIN to PATH --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a013ba3c..481886082 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,4 +33,5 @@ jobs: - name: Build binaries run: | go get github.com/mitchellh/gox - $GOBIN/gox -parallel 4 -os "linux freebsd netbsd windows" -osarch "darwin/i386 darwin/amd64" + export PATH="$(go env GOPATH)/bin:$PATH" + gox -parallel 4 -os "linux freebsd netbsd windows" -osarch "darwin/i386 darwin/amd64"