From 0351e55f7c2638927aef9d2969966e2d690c5afb Mon Sep 17 00:00:00 2001 From: Max Mehl Date: Tue, 16 Jan 2024 16:25:22 +0100 Subject: [PATCH] split runs in action --- .gitea/actions/poetrybuild/action.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/actions/poetrybuild/action.yaml b/.gitea/actions/poetrybuild/action.yaml index b57f5a8..5dd150b 100644 --- a/.gitea/actions/poetrybuild/action.yaml +++ b/.gitea/actions/poetrybuild/action.yaml @@ -12,8 +12,8 @@ inputs: runs: using: "composite" steps: - - name: Install dependencies - run: | - pip install poetry - poetry install --no-interaction ${{ inputs.poetry_install_args }} + - name: Install poetry + run: pip install poetry + - name: Install poetry package + run: poetry install --no-interaction ${{ inputs.poetry_install_args }} shell: bash