testing the env vars access
This commit is contained in:
parent
725ce08e86
commit
d4f6c07fc0
13
sign.js
13
sign.js
|
@ -1,12 +1,15 @@
|
||||||
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 - vault URL: ${process.env.SigningVaultURL}`)
|
||||||
|
|
||||||
require("child_process").execSync(
|
require("child_process").execSync(
|
||||||
`azuresigntool sign \
|
`azuresigntool sign \
|
||||||
-kvu "${process.env.SigningVaultURL}" \
|
-kvu ${process.env.SigningVaultURL} \
|
||||||
-kvi "${process.env.SigningClientId}" \
|
-kvi ${process.env.SigningClientId} \
|
||||||
-kvs "${process.env.SigningClientSecret}" \
|
-kvs ${process.env.SigningClientSecret} \
|
||||||
-kvc "${process.env.SigningCertName}" \
|
-kvc ${process.env.SigningCertName} \
|
||||||
|
-fd ${configuration.hash}
|
||||||
|
-du ${configuration.site}
|
||||||
-tr http://timestamp.digicert.com \
|
-tr http://timestamp.digicert.com \
|
||||||
${configuration.path}`,
|
${configuration.path}`,
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue