👷 fix python ci cache path error (#1012)

* 👷 fix python ci cache path error

* 🐛 fix path error

* ✏️ fix typo
This commit is contained in:
Ju4tCode
2022-05-27 11:25:51 +08:00
committed by GitHub
parent 6cfa21b15c
commit ae21bfdd0e
2 changed files with 11 additions and 3 deletions

View File

@ -10,17 +10,22 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/setup-python@v2
- id: python
uses: actions/setup-python@v2
with:
python-version: ${{ inputs.python-version }}
architecture: "x64"
- uses: Gr1N/setup-poetry@v7
- id: poetry-cache
run: echo "::set-output name=dir::$(poetry config virtualenvs.path)"
shell: bash
- uses: actions/cache@v2
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ inputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
path: ${{ steps.poetry-cache.outputs.dir }}
key: ${{ runner.os }}-poetry-${{ steps.python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- run: poetry install -E all
shell: bash