From 9b012ba65bc96fe8e64550006aa7c8fce82714de Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Mon, 29 Jan 2024 16:14:22 +0100 Subject: [PATCH] Fix missing poetry binary --- .github/actions/setup-mako/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-mako/action.yml b/.github/actions/setup-mako/action.yml index 14c376c..fdd5a29 100644 --- a/.github/actions/setup-mako/action.yml +++ b/.github/actions/setup-mako/action.yml @@ -12,7 +12,6 @@ runs: - uses: actions/setup-python@v5 with: python-version: '>=3.8' - cache: 'poetry' - name: Ensure pipx is available run: | @@ -27,6 +26,11 @@ runs: run: pipx install poetry shell: bash + - uses: actions/setup-python@v5 + with: + python-version: '>=3.8' + cache: 'poetry' + - run: | cd "${{ steps.path.outputs.mako }}" poetry install --only main