We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cc725c commit 696f189Copy full SHA for 696f189
.github/workflows/documentation.yml
@@ -12,9 +12,14 @@ jobs:
12
- uses: actions/setup-python@v4
13
with:
14
python-version: 3.x
15
- - uses: actions/cache@v2
+ - name: Get Date
16
+ id: get-date
17
+ run: |
18
+ echo "date=$(/bin/date -u "+%Y%m")" >> $GITHUB_OUTPUT
19
+ shell: bash
20
+ - uses: actions/cache@v4
21
- key: ${{ github.ref }}
22
+ key: ${{ runner.os }}-${{ steps.get-date.outputs.date }}
23
path: .cache
24
- run: sudo apt-get install -y libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev
25
- run: pip install -r docs/requirements.txt
0 commit comments