Minimizing unnecessary differences
This commit is contained in:
+4
-4
@@ -146822,11 +146822,11 @@ class Deployment {
|
|||||||
const timeoutInput = Number(core.getInput('timeout'))
|
const timeoutInput = Number(core.getInput('timeout'))
|
||||||
this.timeout = !timeoutInput || timeoutInput <= 0 ? MAX_TIMEOUT : Math.min(timeoutInput, MAX_TIMEOUT)
|
this.timeout = !timeoutInput || timeoutInput <= 0 ? MAX_TIMEOUT : Math.min(timeoutInput, MAX_TIMEOUT)
|
||||||
|
|
||||||
core.debug(`Actor: ${this.buildActor}`)
|
|
||||||
core.debug(`Action ID: ${this.actionsId}`)
|
|
||||||
core.debug(`Actions Workflow Run ID: ${this.workflowRun}`)
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
core.debug(`Actor: ${this.buildActor}`)
|
||||||
|
core.debug(`Action ID: ${this.actionsId}`)
|
||||||
|
core.debug(`Actions Workflow Run ID: ${this.workflowRun}`)
|
||||||
|
|
||||||
const artifactData = await getArtifactMetadata({ artifactName: this.artifactName })
|
const artifactData = await getArtifactMetadata({ artifactName: this.artifactName })
|
||||||
|
|
||||||
if (artifactData?.size > ONE_GIGABYTE) {
|
if (artifactData?.size > ONE_GIGABYTE) {
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -58,11 +58,11 @@ class Deployment {
|
|||||||
const timeoutInput = Number(core.getInput('timeout'))
|
const timeoutInput = Number(core.getInput('timeout'))
|
||||||
this.timeout = !timeoutInput || timeoutInput <= 0 ? MAX_TIMEOUT : Math.min(timeoutInput, MAX_TIMEOUT)
|
this.timeout = !timeoutInput || timeoutInput <= 0 ? MAX_TIMEOUT : Math.min(timeoutInput, MAX_TIMEOUT)
|
||||||
|
|
||||||
core.debug(`Actor: ${this.buildActor}`)
|
|
||||||
core.debug(`Action ID: ${this.actionsId}`)
|
|
||||||
core.debug(`Actions Workflow Run ID: ${this.workflowRun}`)
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
core.debug(`Actor: ${this.buildActor}`)
|
||||||
|
core.debug(`Action ID: ${this.actionsId}`)
|
||||||
|
core.debug(`Actions Workflow Run ID: ${this.workflowRun}`)
|
||||||
|
|
||||||
const artifactData = await getArtifactMetadata({ artifactName: this.artifactName })
|
const artifactData = await getArtifactMetadata({ artifactName: this.artifactName })
|
||||||
|
|
||||||
if (artifactData?.size > ONE_GIGABYTE) {
|
if (artifactData?.size > ONE_GIGABYTE) {
|
||||||
|
|||||||
Reference in New Issue
Block a user