Skip to content

Commit f17b52a

Browse files
committed
setup-poetry: Don't use $pythonLocation due to actions/setup-python#1138
1 parent 19f10ad commit f17b52a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup-poetry/action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ runs:
5959
- name: Install Poetry
6060
if: steps.cache-poetry.outputs.cache-hit != 'true'
6161
run: |
62-
ls -al "$pythonLocation"
63-
"$pythonLocation/python" -m venv "$POETRY_HOME"
62+
python -m venv "$POETRY_HOME"
6463
"$POETRY_HOME_BIN/python" -m pip install poetry==${{ inputs.poetry-version }}
6564
mkdir -p "$POETRY_BIN_DIR"
6665
ln -s "$POETRY_HOME_BIN/poetry"* "$POETRY_BIN_DIR/"

0 commit comments

Comments
 (0)