Skip to content

Commit

Permalink
Attempt to add cache
Browse files Browse the repository at this point in the history
  • Loading branch information
cronokirby committed Dec 13, 2024
1 parent 20b29c8 commit ecfc1d6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,20 @@ jobs:
elan --version
lean --version
lake --version
- name: "Restore Lake Cache"
id: cache-lake-restore
uses: actions/cache/restore@v4
with:
path: ".lake/"
key: "${{ runner.os }}-lake-${{ hashFiles('lake-manifest.json') }}"
- name: "Build Docs"
run: just build-docs
- name: "Save Lake Cache"
id: cache-lake-save
uses: actions/cache/restore@v4
with:
path: ".lake/"
keys: "${{ steps.cache-lake-restore.outputs.cache-primary-key }}"
# https://docs.github.com/en/pages/getting-started-with-github-pages/using-custom-workflows-with-github-pages
- name: "Setup Pages"
uses: "actions/configure-pages@v5"
Expand Down

0 comments on commit ecfc1d6

Please sign in to comment.