diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9adb558..4f3cbd0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -3,7 +3,7 @@ name: Deploy to GitHub Pages on: push: branches: - - main # Trigger deployment when pushing to main + - main jobs: build-and-deploy: @@ -23,5 +23,10 @@ jobs: - name: Install dependencies run: npm install + - name: Configure Git + run: | + git config --global user.name "GitHub Actions" + git config --global user.email "actions@github.com" + - name: Build and Deploy run: npm run deploy \ No newline at end of file