From 37e016d4a39974fca898624bf275c97b164d0674 Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Fri, 9 Dec 2022 19:42:10 -0500 Subject: [PATCH] feat(ci): add geth bin to GITHUB_PATH (#373) * PATH is not updated between action steps, so GITHUB_PATH needs to be prepended with the directory the geth binary is in --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25c6dcb95..3069e4d41 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,7 @@ jobs: mv geth-linux-amd64-$GETH_BUILD/geth $HOME/bin/geth chmod u+x "$HOME/bin/geth" export PATH=$HOME/bin:$PATH + echo $HOME/bin >> $GITHUB_PATH geth version - name: Install latest nextest release