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