Skip to content

Commit

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

# 3. Configure Git
- name: Configure Git User
# 3. Set GIT_USER
- name: Set GIT_USER
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
export GIT_USER="${{ github.actor }}"
echo "GIT_USER=$GIT_USER" >> $GITHUB_ENV
# 4. Install dependencies and deploy
- name: Install dependencies and deploy
Expand Down

0 comments on commit 6b64650

Please sign in to comment.