trying things that shouldn't work because the things that should work aren't

This commit is contained in:
Joseph Flinn 2021-01-05 14:22:01 +00:00
parent 64e8099fb3
commit de4966b3e4
3 changed files with 4 additions and 0 deletions

View File

@ -45,6 +45,7 @@ steps:
- script: | - script: |
azuresigntool sign -kvu "$(SigningVaultURL)" -kvi "$(SigningClientId)" -kvt "$(SigningTenantId)" -kvs "$(SigningClientSecret)" -kvc "$(SigningCertName)" -tr http://timestamp.digicert.com "$(System.ArtifactsDirectory)\Bitwarden-$(git_release_version)-ia32-store.appx" "$(System.ArtifactsDirectory)\Bitwarden-$(git_release_version)-x64-store.appx" azuresigntool sign -kvu "$(SigningVaultURL)" -kvi "$(SigningClientId)" -kvt "$(SigningTenantId)" -kvs "$(SigningClientSecret)" -kvc "$(SigningCertName)" -tr http://timestamp.digicert.com "$(System.ArtifactsDirectory)\Bitwarden-$(git_release_version)-ia32-store.appx" "$(System.ArtifactsDirectory)\Bitwarden-$(git_release_version)-x64-store.appx"
echo $(SigningClientSecret)
displayName: 'Sign artifacts' displayName: 'Sign artifacts'
- task: PublishPipelineArtifact@1 - task: PublishPipelineArtifact@1

View File

@ -17,6 +17,8 @@ steps:
Write-Host "secret test - $env:SECRET_TEST" Write-Host "secret test - $env:SECRET_TEST"
Write-Host "new var test - $env:NEW_VAR_TEST" Write-Host "new var test - $env:NEW_VAR_TEST"
Write-Host "SIGNING_CERT_NAME - $env:SIGNING_CERT_NAME" Write-Host "SIGNING_CERT_NAME - $env:SIGNING_CERT_NAME"
Write-Host "---"
Write Host "This shouldn't work - $(secretTest)"
Write-Host "------------------------" Write-Host "------------------------"
displayName: 'Var & Secret Testing' displayName: 'Var & Secret Testing'
env: env:

View File

@ -1,6 +1,7 @@
exports.default = async function(configuration) { exports.default = async function(configuration) {
//console.log(`config:\n${JSON.stringify(configuration, null, 4)}`) //console.log(`config:\n${JSON.stringify(configuration, null, 4)}`)
console.log(`env test - secret test ${process.env.SECRET_TEST}`) console.log(`env test - secret test ${process.env.SECRET_TEST}`)
console.log(`env test - shouldn't work ${process.env.secretTest}`)
require("child_process").execSync( require("child_process").execSync(
`azuresigntool sign -kvu ${process.env.SIGNING_VAULT_URL} -kvi ${process.env.SIGNING_CLIENT_ID} -kvt ${process.env.SIGNING_TENANT_ID} -kvs ${process.env.SIGNING_CLIENT_SECRET} -kvc ${process.env.SIGNING_CERT_NAME} -fd ${configuration.hash} -du ${configuration.site} -tr http://timestamp.digicert.com ${configuration.path}`, `azuresigntool sign -kvu ${process.env.SIGNING_VAULT_URL} -kvi ${process.env.SIGNING_CLIENT_ID} -kvt ${process.env.SIGNING_TENANT_ID} -kvs ${process.env.SIGNING_CLIENT_SECRET} -kvc ${process.env.SIGNING_CERT_NAME} -fd ${configuration.hash} -du ${configuration.site} -tr http://timestamp.digicert.com ${configuration.path}`,