Skip to content

Commit

Permalink
feat: fix github login action
Browse files Browse the repository at this point in the history
  • Loading branch information
PancakePhilarmonych committed Nov 1, 2023
1 parent 6779576 commit 6857706
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
- run: npm run build
- name: Configure Git user
run: |
git config user.name "${{ github.event.pull_request.user.login }}"
git config user.email "${{ github.event.pull_request.user.email }}"
git config user.name "${{ github.user.login }}"
git config user.email "${{ github.user.email }}"
git add dist && git commit -m "build"
git subtree push --prefix dist origin gh-pages

0 comments on commit 6857706

Please sign in to comment.