From fb1b4deb1a45e164f91ed3339b8ebaddd6f77488 Mon Sep 17 00:00:00 2001 From: Armand Sauzay <35524799+armand-sauzay@users.noreply.github.com> Date: Tue, 25 Mar 2025 16:54:46 +0000 Subject: [PATCH] fix: remove poetry install action --- poetry-install/README.md | 29 ----------------------------- poetry-install/action.yaml | 12 ------------ 2 files changed, 41 deletions(-) delete mode 100644 poetry-install/README.md delete mode 100644 poetry-install/action.yaml diff --git a/poetry-install/README.md b/poetry-install/README.md deleted file mode 100644 index 0fe0bb6..0000000 --- a/poetry-install/README.md +++ /dev/null @@ -1,29 +0,0 @@ -# GitHub Action Poetry Install - -## Description - -GitHub Action that installs Poetry in a cacheable safe way. - -- Installs Poetry using the default available `pip` command. -- Sets the Poetry configuration to be `$RUNNER_TEMP/poetry-config` so there is - no conflicts with other Poetry installations. -- Sets the Poetry cache directory to `$RUNNER_TEMP/poetry-cache` so it can be - cached if desired between runs. - -## Usage - -```yaml -jobs: - build: - steps: - - name: Poetry install - uses: open-turo/actions-python/poetry-install@v1 -``` - -## Inputs - -This action takes no inputs. - -## Runs - -This action is an `composite` action. diff --git a/poetry-install/action.yaml b/poetry-install/action.yaml deleted file mode 100644 index 99adc9e..0000000 --- a/poetry-install/action.yaml +++ /dev/null @@ -1,12 +0,0 @@ -name: Poetry install -description: GitHub Action that installs Poetry in a cacheable safe way -runs: - using: composite - steps: - - name: Setup tools - uses: open-turo/action-setup-tools@v2 - - name: Install poetry - shell: bash - run: ${GITHUB_ACTION_PATH}/../lib/poetry-install.sh - env: - SKIP_POETRY_INSTALL: "true"