Skip to content

Commit

Permalink
Export GOPATH during build
Browse files Browse the repository at this point in the history
Co-authored-by: na-- <[email protected]>
  • Loading branch information
Ivan Mirić and na-- authored Oct 8, 2020
1 parent 8a6c78d commit aa97043
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,14 +160,14 @@ jobs:
env:
GO111MODULE: 'off'
run: |
gopath="$(go env GOPATH)"
export GOPATH="$(go env GOPATH)"
go get github.com/Masterminds/glide
go get -d github.com/mh-cbon/go-bin-deb \
&& (cd "$gopath/src/github.com/mh-cbon/go-bin-deb" \
&& (cd "$GOPATH/src/github.com/mh-cbon/go-bin-deb" \
&& glide install \
&& go install)
go get -d github.com/mh-cbon/go-bin-rpm \
&& (cd "$gopath/src/github.com/mh-cbon/go-bin-rpm" \
&& (cd "$GOPATH/src/github.com/mh-cbon/go-bin-rpm" \
&& glide install \
&& go install)
sudo apt-get update -y
Expand Down

0 comments on commit aa97043

Please sign in to comment.