Skip to content

Commit b8456d1

Browse files
committed
Debug
1 parent dce4ef1 commit b8456d1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/python-environment/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ runs:
4646
- name: Set up Poetry (${{ inputs.poetry-version }})
4747
shell: bash
4848
run: |
49-
curl -sSL https://install.python-poetry.org | POETRY_VERSION="${{ inputs.poetry-version }}" POETRY_HOME=/usr/local sudo -E "$PYTHON_BINARY" -
49+
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" -
5052
echo "$PATH"
5153
poetry --version
5254
env:

0 commit comments

Comments
 (0)