From 8709cf2d486628cfff5136268aa74413bdeda71b 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..4ede741 100644 --- a/.gitea/actions/poetrybuild/action.yaml +++ b/.gitea/actions/poetrybuild/action.yaml @@ -13,7 +13,9 @@ runs: using: "composite" steps: - name: Install poetry - run: pip install poetry + run: pipx install poetry + - name: Set PATH + run: export PATH="$PATH:~/.local/bin" - name: Install poetry package run: poetry install --no-interaction ${{ inputs.poetry_install_args }} shell: bash