From 6eaf0a795de636e0bf7feb46695f98086514607a Mon Sep 17 00:00:00 2001 From: Max Mehl Date: Sun, 12 Jan 2025 12:23:58 +0100 Subject: [PATCH] fix poetry install in ubuntu 24.04 --- .gitea/actions/poetrybuild/action.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/actions/poetrybuild/action.yaml b/.gitea/actions/poetrybuild/action.yaml index 5dd150b..f9510bf 100644 --- a/.gitea/actions/poetrybuild/action.yaml +++ b/.gitea/actions/poetrybuild/action.yaml @@ -12,8 +12,10 @@ inputs: runs: using: "composite" steps: + - name: Set PATH + run: export PATH=$PATH:~/.local/bin - name: Install poetry - run: pip install poetry + run: pipx install poetry - name: Install poetry package run: poetry install --no-interaction ${{ inputs.poetry_install_args }} shell: bash