Skip to content

Commit

Permalink
Fix github pages actions missing git credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
jpikl committed Mar 23, 2024
1 parent a0277c0 commit 12f91f9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ jobs:
tool: just,mdbook

- name: Deploy pages
run: just pages-deploy
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
just pages-deploy

0 comments on commit 12f91f9

Please sign in to comment.