From eb479c07a5ca64ab3524f7d609bf66878d90ff06 Mon Sep 17 00:00:00 2001 From: Hugo Date: Wed, 29 Apr 2020 17:54:02 +0300 Subject: [PATCH] Add Python example using 'pip cache dir' to get cache location --- examples.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/examples.md b/examples.md index 3030e4a..3c1140b 100644 --- a/examples.md +++ b/examples.md @@ -18,6 +18,7 @@ - [Python - pip](#python---pip) - [Simple example](#simple-example) - [Multiple OS's in a workflow](#multiple-oss-in-a-workflow) + - [Using pip to get cache location](#using-pip-to-get-cache-location) - [Using a script to get cache location](#using-a-script-to-get-cache-location) - [R - renv](#r---renv) - [Simple example](#simple-example-1) @@ -290,6 +291,25 @@ Replace `~/.cache/pip` with the correct `path` if not using Ubuntu. ${{ runner.os }}-pip- ``` +### Using pip to get cache location + +> Note: This requires pip 20.1+ +```yaml +- name: Get pip cache dir + id: pip-cache + run: | + python -m pip install -U "pip>=20.1" + echo "::set-output name=dir::$(pip cache dir)" + +- name: pip cache + uses: actions/cache@v1 + with: + path: ${{ steps.pip-cache.outputs.dir }} + key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} + restore-keys: | + ${{ runner.os }}-pip- +``` + ### Using a script to get cache location > Note: This uses an internal pip API and may not always work