mirror of
https://github.com/Ryujinx/Ryujinx-Mako.git
synced 2025-08-17 16:51:06 +00:00
Fix missing poetry binary
This commit is contained in:
parent
a95e0a1909
commit
9b012ba65b
6
.github/actions/setup-mako/action.yml
vendored
6
.github/actions/setup-mako/action.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue