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 9b722e0 commit 5e8960cCopy full SHA for 5e8960c
.github/actions/python-environment/action.yml
@@ -46,8 +46,12 @@ 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 }} python3 -
50
- echo "~/.local/bin" >> $GITHUB_PATH
+ POETRY_VERSION="${{ inputs.poetry-version }}"
+ POETRY_HOME=/usr/loca/bin
51
+ curl -sSL https://install.python-poetry.org | sudo python3 -
52
+ echo "$PATH"
53
+ poetry --version
54
+
55
56
57
- name: Poetry install with extras
0 commit comments