diff --git a/examples.md b/examples.md index ac4630d..0947e70 100644 --- a/examples.md +++ b/examples.md @@ -100,7 +100,9 @@ steps: ```yaml - uses: actions/cache@v2 with: - path: deps + path: | + deps + _build key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} restore-keys: | ${{ runner.os }}-mix- @@ -389,23 +391,6 @@ jobs: ${{ runner.os }}-pip- ``` -### Using a script to get cache location - -> Note: This uses an internal pip API and may not always work -```yaml -- name: Get pip cache dir - id: pip-cache - run: | - python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)" - -- uses: actions/cache@v2 - with: - path: ${{ steps.pip-cache.outputs.dir }} - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} - restore-keys: | - ${{ runner.os }}-pip- -``` - ## Python - pipenv ```yaml