From 4ec49fcfe58ad51ca63c775821c4f5be82172e26 Mon Sep 17 00:00:00 2001 From: David Roff Date: Thu, 12 Dec 2024 09:45:44 +0100 Subject: [PATCH] update deploy.yml for identity --- .github/workflows/deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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