Skip to content

Commit

Permalink
test with win gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
marcopiraccini committed Dec 3, 2023
1 parent 846ee43 commit 27d04ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sign-win/sign-win.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exports.default = async function (configuration) {
try {
console.log('@@ Signing for windows', configuration.path)
const execPath = configuration.path
const { stdout, stderr } = await execa('smctl', [
const { stdout, stderr, exitCode } = await execa('smctl', [
'sign',
'--fingerprint',
configuration.fingerprint,
Expand All @@ -17,6 +17,7 @@ exports.default = async function (configuration) {
])
console.log('@@ stdout', stdout)
console.log('@@ stderr', stderr)
console.log('@@ exitCode', exitCode)
} catch (error) {
console.error('@@ error catched', error)
throw error
Expand Down

0 comments on commit 27d04ab

Please sign in to comment.