Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More careful update of github actions #219

Merged
merged 3 commits into from
Jan 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ jobs:


- name: Setup Pages
uses: actions/configure-pages@v4
uses: actions/configure-pages@v5

- name: Upload blueprint artifact
uses: actions/upload-pages-artifact@v4
uses: actions/upload-pages-artifact@v3
with:
path: docs

Expand All @@ -100,7 +100,7 @@ jobs:
run: make LAKEBIN='~/.elan/bin/lake' build

- name: Cache mathlib docs
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: |
.lake/build/doc/Init
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
key: Documentation-cache

#- name: Download blueprint artifacts
# uses: actions/download-artifact@v4
# uses: actions/download-artifact@v3
# with:
# path: blueprint_artifacts
#
Expand All @@ -153,7 +153,7 @@ jobs:
continue-on-error: true

- name: Upload docs & blueprint artifact
uses: actions/upload-pages-artifact@v4
uses: actions/upload-pages-artifact@v3
with:
path: docs

Expand Down