Skip to content

Commit

Permalink
Merge pull request #387 from Hacking-the-Cloud/update/ghactions_cache_v5
Browse files Browse the repository at this point in the history
Updated GitHub Actions cache to v4
  • Loading branch information
Frichetten authored Feb 19, 2024
2 parents 796da3f + 3993fca commit 3de9d94
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy_v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
if: github.event.repository.fork == false
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
steps:
Expand All @@ -16,10 +17,12 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
key: ${{ github.ref }}
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: sudo apt-get install -y libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev
- run: pip install pillow cairosvg
- run: pip install mkdocs-minify-plugin
Expand Down

0 comments on commit 3de9d94

Please sign in to comment.