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"