mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-05 09:01:11 +01:00
30 lines
711 B
PowerShell
30 lines
711 B
PowerShell
param (
|
|
[Parameter(Mandatory=$true)]
|
|
[string] $filename,
|
|
[string] $output
|
|
)
|
|
|
|
$homePath = $env:HOME
|
|
$rootPath = $env:GITHUB_WORKSPACE
|
|
|
|
$secretInputPath = $rootPath + "/.github/secrets"
|
|
$input = $secretInputPath + $filename
|
|
|
|
$passphrase = $env:DECRYPT_FILE_PASSWORD
|
|
|
|
if ([string]::IsNullOrEmpty($output)) {
|
|
$secretOutputPath = $homePath + "/secrets/"
|
|
if($filename.EndsWith(".gpg")) {
|
|
$output = $secretOutputPath + $filename.TrimEnd(".gpg")
|
|
} else {
|
|
$output = $secretOutputPath + $filename + ".plaintext"
|
|
}
|
|
}
|
|
|
|
if(!(Test-Path -Path $secretPath))
|
|
{
|
|
New-Item -ItemType Directory -Path $secretPath
|
|
}
|
|
|
|
gpg --quiet --batch --yes --decrypt --passphrase="$passphrase" --output $output $input
|