From 7dc3d62bb67c4fc5a3b754dbe28cce1b3cccf5bf Mon Sep 17 00:00:00 2001 From: Mike Farah Date: Tue, 14 Apr 2020 11:33:25 +1000 Subject: [PATCH] Attempt to fix github flow --- .github/workflows/go.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e89e934..08a5cba 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -25,6 +25,10 @@ jobs: fi - name: Download deps - run: scripts/devtools.sh + run: | + export PATH=${PATH}:`go env GOPATH`/bin + scripts/devtools.sh - name: Build - run: make local build \ No newline at end of file + run: | + export PATH=${PATH}:`go env GOPATH`/bin + make local build \ No newline at end of file