Update distributables

This commit is contained in:
James M. Greene
2023-03-09 08:19:24 -06:00
parent f824564d16
commit df61277554
2 changed files with 10 additions and 6 deletions

14
dist/index.js vendored
View File

@@ -10047,13 +10047,17 @@ class Deployment {
idToken,
isPreview: this.isPreview
})
this.deploymentInfo = {
...deployment,
id: deployment?.id || deployment?.['status_url']?.split('/')?.pop() || this.buildVersion,
pending: true
if (deployment) {
this.deploymentInfo = {
...deployment,
id: deployment?.id || deployment?.['status_url']?.split('/')?.pop() || this.buildVersion,
pending: true
}
}
core.info(`Created deployment for ${this.buildVersion}, ID: ${this.deploymentInfo.id}`)
core.info(`Created deployment for ${this.buildVersion}, ID: ${this.deploymentInfo?.id}`)
core.debug(JSON.stringify(deployment))
return deployment

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long