Skip to content

Commit

Permalink
Git config deploy 22
Browse files Browse the repository at this point in the history
  • Loading branch information
building-u committed Jun 23, 2024
1 parent 8049f53 commit 751bd93
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,16 @@ jobs:
- name: Build frontend
run: cd views && npm run build

- name: Configure Git
run: |
git config --global user.name 'buildingu'
git config --global user.email '[email protected]'
- name: Deploy to GitHub Pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: cd views && npm run deploy
run: |
cd views
git config --global user.name 'buildingu'
git config --global user.email '[email protected]'
npm run deploy

0 comments on commit 751bd93

Please sign in to comment.