Skip to content

Commit

Permalink
fix(ci): set git identity before commit to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
gbprod committed Oct 31, 2022
1 parent 3de59d5 commit 035f549
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/gh-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:

- name: Commit generated wasm binding to the gh-pages branch
run: |
git config --global user.email "$(git log --format='%ae' HEAD^!)"
git config --global user.name "$(git log --format='%an' HEAD^!)"
cd ./gh-pages
git add *.wasm
git commit -m "Generate WASM binding" || true
Expand Down

0 comments on commit 035f549

Please sign in to comment.