Skip to content

Commit

Permalink
Attempt to make cache work
Browse files Browse the repository at this point in the history
Signed-off-by: Dylan Reimerink <[email protected]>
  • Loading branch information
dylandreimerink committed Dec 29, 2024
1 parent 1ed0eb8 commit 27c6792
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/deploy-gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
path: .cache
key: cache-plugins-${{ github.run_id }}
restore-keys: |
cache-plugins-
cache-plugins
- name: Apply deploy config
run: |
echo "" >> mkdocs.yml
Expand All @@ -47,9 +47,19 @@ jobs:
echo " analytics:" >> mkdocs.yml
echo " provider: google" >> mkdocs.yml
echo " property: G-KVJ1CK539N" >> mkdocs.yml
- name: Debug pre Build
run: |
cat .cache/plugin/git-committers/page-authors.json
- name: Build html
run: |
make html PROD=true GH_TOKEN=${{ secrets.GITHUB_TOKEN }}
- name: Debug post Build
run: |
cat .cache/plugin/git-committers/page-authors.json
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '.cache/plugin/git-committers/page-authors.json'
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
Expand Down

0 comments on commit 27c6792

Please sign in to comment.