From 63a6f1bec4523452b959632d8ff186134f542483 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 2 Mar 2021 12:15:18 +0100 Subject: [PATCH] GitHub Actions: Add $PYENV_ROOT/shims to $PATH --- .github/workflows/ubuntu_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu_tests.yml b/.github/workflows/ubuntu_tests.yml index 3d33e647..76be61ba 100644 --- a/.github/workflows/ubuntu_tests.yml +++ b/.github/workflows/ubuntu_tests.yml @@ -24,7 +24,7 @@ jobs: PYENV_ROOT: /home/runner/work/pyenv/pyenv run: | echo $PYENV_ROOT - echo "$HOME/bin" >> $GITHUB_PATH + echo "$PYENV_ROOT/shims:$PYENV_ROOT/bin" >> $GITHUB_PATH bin/pyenv install ${{ matrix.python-version }} bin/pyenv global ${{ matrix.python-version }} bin/pyenv rehash