Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
timlichtnau committed Jul 27, 2024
2 parents d9d37c4 + bd5dd48 commit 3985b92
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 15 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Build project
steps:
- name: Checkout project
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -42,7 +42,7 @@ jobs:
run: ~/.elan/bin/lake -Kenv=dev build BonnAnalysis

- name: Cache mathlib documentation
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.lake/build/doc/Init
Expand Down Expand Up @@ -105,13 +105,13 @@ jobs:
# path: docs/

- name: Upload docs & blueprint artifact to `docs/_site`
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: docs/_site

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

- name: Make sure the cache works
run: mv docs/docs .lake/build/doc
run: mv docs/docs .lake/build/doc
2 changes: 1 addition & 1 deletion .github/workflows/push_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Build project
steps:
- name: Checkout project
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
48 changes: 39 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,44 @@
/build
/lake-packages
/.lake
/.cache
## macOS
.DS_Store
## Lake
.lake/*
.cache/*
.devenv/*
.stfolder/*
/lakefile.olean
/lake-packages/*
/build
## Blueprint
/blueprint/lean_decls
/blueprint/print/print.log
/blueprint/web/
/blueprint/src/web.paux
/blueprint/src/web.bbl
/blueprint/print/
## Docs
docs/_includes/sorries.md
## TeX
*.aux
*.fdb_latexmk
*.fls
*.lof
*.log
*.lot
*.fls
*.out
*.toc
*.fmt
*.fot
*.cb
*.cb2
.*.lb
*.bbl
*.bcf
*.blg
*-blx.aux
*-blx.bib
*.run.xml
*.fdb_latexmk
*.synctex
*.synctex(busy)
*.synctex.gz
# Lean blueprint
/blueprint/lean_decls
/blueprint/src/web.bbl
*.synctex.gz(busy)
*.pdfsync

0 comments on commit 3985b92

Please sign in to comment.