From f4ad1ec8e7d49e682895a89d3106a78e42f2dc68 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 8 Jun 2020 13:02:38 -0400 Subject: [PATCH] fix secretOutputPath --- .github/scripts/decrypt-secret.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/decrypt-secret.ps1 b/.github/scripts/decrypt-secret.ps1 index 7b57298c7..8dfabe5cf 100644 --- a/.github/scripts/decrypt-secret.ps1 +++ b/.github/scripts/decrypt-secret.ps1 @@ -21,9 +21,9 @@ if ([string]::IsNullOrEmpty($output)) { } } -if(!(Test-Path -Path $secretPath)) +if(!(Test-Path -Path $secretOutputPath)) { - New-Item -ItemType Directory -Path $secretPath + New-Item -ItemType Directory -Path $secretOutputPath } gpg --quiet --batch --yes --decrypt --passphrase="$passphrase" --output $output $input