Change name and email of git commit (#87)

This commit is contained in:
Matt Mazzola 2018-04-30 16:37:26 -07:00 коммит произвёл GitHub
Родитель f65e8ebf36
Коммит aab8120359
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -22,8 +22,8 @@ cd("dist/docs")
touch(".nojekyll")
exec("git init")
exec("git add .")
exec('git config user.name "Matt Mazzola"')
exec('git config user.email "mattm@microsoft.com"')
exec('git config user.name "Microsoft Conversation Learner"')
exec('git config user.email "conversationlearner@service.microsoft.com"')
exec('git commit -m "docs(docs): update gh-pages"')
exec(
`git push --force --quiet "https://${ghToken}@${repository}" master:gh-pages`