[F] Fix exit code 129 when committer's name has spaces

pull/28/head
Hykilpikonna 2022-06-24 14:49:14 -04:00 committed by GitHub
parent bf02e72a24
commit 1d656779cc
Signed by: github
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ jobs:
run: yarn build
- name: Deploy
run: |
git config --global user.name $(git show -s --format='%an' HEAD)
git config --global user.email $(git show -s --format='%ae' HEAD)
git config --global user.name "$(git show -s --format='%an' HEAD)"
git config --global user.email "$(git show -s --format='%ae' HEAD)"
cd dist
git init