Fix missing poetry binary

This commit is contained in:
TSR Berry 2024-01-29 16:14:22 +01:00
parent a95e0a1909
commit 9b012ba65b
No known key found for this signature in database
GPG key ID: 52353C0A4CCA15E2

View file

@ -12,7 +12,6 @@ runs:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: '>=3.8' python-version: '>=3.8'
cache: 'poetry'
- name: Ensure pipx is available - name: Ensure pipx is available
run: | run: |
@ -27,6 +26,11 @@ runs:
run: pipx install poetry run: pipx install poetry
shell: bash shell: bash
- uses: actions/setup-python@v5
with:
python-version: '>=3.8'
cache: 'poetry'
- run: | - run: |
cd "${{ steps.path.outputs.mako }}" cd "${{ steps.path.outputs.mako }}"
poetry install --only main poetry install --only main