fix certificate selection

This commit is contained in:
Thomas Nordquist
2022-02-27 13:33:22 +01:00
parent e4add31793
commit 13b8f8d5da
42 changed files with 23477 additions and 5471 deletions

View File

@@ -53,12 +53,12 @@ async function uploadAsset() {
try {
uploadUrl = await createDraft(tag)
} catch (error) {
console.error('failed to create draft', error.stack)
console.error('failed to create draft', (error as Error).stack)
process.exit(1)
}
}
} catch (error) {
console.error('failed to find tag release', error.stack)
console.error('failed to find tag release', (error as Error).stack)
process.exit(1)
}