diff --git a/.github/workflows/astro.yml b/.github/workflows/astro.yml index 47703ad..af3ca05 100644 --- a/.github/workflows/astro.yml +++ b/.github/workflows/astro.yml @@ -60,3 +60,13 @@ jobs: - name: Deploy to GitHub Pages ✍️ uses: actions/deploy-pages@v4 + + - name: Git + run: | + if [ -n "$(git status --porcelain)" ]; then + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git add -A + git commit -m "Build" + git push + fi