diff --git a/scripts/deploy.ps1 b/scripts/deploy.ps1 index 572fe93..c1991bc 100644 --- a/scripts/deploy.ps1 +++ b/scripts/deploy.ps1 @@ -9,6 +9,7 @@ Set-Location "./dist" # Set git email and username Write-Host "Configuring git" +Write-Host "Using identity $env:PUBLISHER_NAME / $env:PUBLISHER_EMAIL" git init git config --local user.name "$env:PUBLISHER_NAME" | Out-Null; git config --local user.email "$env:PUBLISHER_EMAIL" | Out-Null;