From 055d6f912c75ed692369a542559e586a1cd2d3f8 Mon Sep 17 00:00:00 2001 From: Matteias Collet Date: Mon, 29 Jun 2020 23:47:18 +0200 Subject: [PATCH] debug workflow --- scripts/deploy.ps1 | 1 + 1 file changed, 1 insertion(+) 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;