We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dce4ef1 commit b8456d1Copy full SHA for b8456d1
.github/actions/python-environment/action.yml
@@ -46,7 +46,9 @@ runs:
46
- name: Set up Poetry (${{ inputs.poetry-version }})
47
shell: bash
48
run: |
49
- curl -sSL https://install.python-poetry.org | POETRY_VERSION="${{ inputs.poetry-version }}" POETRY_HOME=/usr/local sudo -E "$PYTHON_BINARY" -
+ PYTHON_PATH=$(which $PYTHON_BINARY)
50
+ $PYTHON_PATH --version
51
+ curl -sSL https://install.python-poetry.org | POETRY_VERSION="${{ inputs.poetry-version }}" POETRY_HOME=/usr/local sudo -E "$PYTHON_PATH" -
52
echo "$PATH"
53
poetry --version
54
env:
0 commit comments