Skip to content

Commit

Permalink
configure git with username and email
Browse files Browse the repository at this point in the history
  • Loading branch information
hoshiyosan committed Dec 13, 2022
1 parent 626903d commit e9acc2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,7 @@ jobs:
run: pip install -r requirements/docs.txt

- name: "Build doc and update github pages"
run: mike deploy --push --update-aliases ${{ env.DOCKER_IMAGE_TAG }} latest
run: |-
git config --global user.name "$(git --no-pager log --format=format:'%an' -n 1)"
git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)"
mike deploy --push --update-aliases ${{ env.DOCKER_IMAGE_TAG }} latest

0 comments on commit e9acc2e

Please sign in to comment.