Specify name for publish git commands

This commit is contained in:
REDMOND\acoates 2019-07-30 13:03:00 -07:00
Родитель f0f5dcaa78
Коммит 144c05477b
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -28,6 +28,9 @@ function doPublish() {
const tempPublishBranch = `publish-temp-${Date.now()}`;
exec(`git checkout -b ${tempPublishBranch}`);
exec(`git config --global user.email "30809111+acoates-ms@users.noreply.github.com"`);
exec(`git config --global user.name "React-Native Build"`);
exec(`git add ${pkgJsonPath}`);
exec(`git commit -m "Applying package update to ${releaseVersion}`);
exec(`git tag v${releaseVersion}`);