Skip to content

Commit

Permalink
Need to b e able to update cache
Browse files Browse the repository at this point in the history
  • Loading branch information
utensil committed Oct 6, 2024
1 parent 0f7187b commit e8f1832
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/aya.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
uses: actions/cache@v4
with:
path: github-pages
key: github-pages
key: github-pages-${{ github.run_id }}
restore-keys: |
github-pages
- uses: extractions/setup-just@v1
with:
just-version: 1.35.0
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,13 @@ jobs:
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Restore github-pages cache
- name: Cache github-pages
uses: actions/cache@v4
with:
path: github-pages
key: github-pages
key: github-pages-${{ github.run_id }}
restore-keys: |
github-pages
- name: Display structure of downloaded files
run: ls -R github-pages
- name: Upload artifact
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/lean4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jobs:
uses: actions/cache@v4
with:
path: github-pages
key: github-pages
key: github-pages-${{ github.run_id }}
restore-keys: |
github-pages
- name: Install Python
uses: actions/setup-python@v5
with:
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@

My monorepo for formalization:

* [Lean 4 Playground](./lean4/README.md) [![Lean 4 CI](https://github.com/utensil/formal-land/actions/workflows/lean4.yml/badge.svg)](https://github.com/utensil/formal-land/actions/workflows/lean4.yml)
* [Aya Playground](./aya/README.md) [![Aya CI](https://github.com/utensil/formal-land/actions/workflows/aya.yml/badge.svg)](https://github.com/utensil/formal-land/actions/workflows/aya.yml)
- [![Lean 4 CI](https://github.com/utensil/formal-land/actions/workflows/lean4.yml/badge.svg)](https://github.com/utensil/formal-land/actions/workflows/lean4.yml)
- [README.md](./lean4/README.md)
- website: [lean4](https://utensil.github.io/formal-land/lean4/)
- [![Aya CI](https://github.com/utensil/formal-land/actions/workflows/aya.yml/badge.svg)](https://github.com/utensil/formal-land/actions/workflows/aya.yml)
- [README.md](./aya/README.md)
- website: [literate.aya](https://utensil.github.io/formal-land/aya/literate.aya.html)

0 comments on commit e8f1832

Please sign in to comment.