diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ada1e6a..5d62f39 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,11 +25,15 @@ jobs: - name: Run page generation script run: python scripts/generate_pages.py + - name: Configure Git + run: | + git config user.name "GitHub Actions" + git config user.email "actions@github.com" + - name: Stage and commit changes run: | git add docs/* git commit -m "Add generated pages" - git push - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v4