Skip to content

Commit

Permalink
website: configure git user even from master
Browse files Browse the repository at this point in the history
  • Loading branch information
asafkorem committed Jan 3, 2025
1 parent cc8fbca commit 53af5a7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ jobs:
with:
node-version: 18 # Use a stable Node.js version like 18 LTS

# 3. Install dependencies and deploy
# 3. Configure Git
- name: Configure Git User
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
# 4. Install dependencies and deploy
- name: Install dependencies and deploy
run: |
cd website
Expand Down

0 comments on commit 53af5a7

Please sign in to comment.