mirror of
https://github.com/actions/deploy-pages.git
synced 2026-03-30 18:14:52 +00:00
little rename for nuance
This commit is contained in:
4
dist/index.js
generated
vendored
4
dist/index.js
generated
vendored
@@ -10054,8 +10054,8 @@ class Deployment {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const TIMEOUT_INPUT = Number(core.getInput('timeout'))
|
const timeoutInput = Number(core.getInput('timeout'))
|
||||||
this.timeout = !TIMEOUT_INPUT || TIMEOUT_INPUT <= 0 ? MAX_TIMEOUT : Math.min(TIMEOUT_INPUT, MAX_TIMEOUT)
|
this.timeout = !timeoutInput || timeoutInput <= 0 ? MAX_TIMEOUT : Math.min(timeoutInput, MAX_TIMEOUT)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
core.debug(`Actor: ${this.buildActor}`)
|
core.debug(`Actor: ${this.buildActor}`)
|
||||||
|
|||||||
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
@@ -54,8 +54,8 @@ class Deployment {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const TIMEOUT_INPUT = Number(core.getInput('timeout'))
|
const timeoutInput = Number(core.getInput('timeout'))
|
||||||
this.timeout = !TIMEOUT_INPUT || TIMEOUT_INPUT <= 0 ? MAX_TIMEOUT : Math.min(TIMEOUT_INPUT, MAX_TIMEOUT)
|
this.timeout = !timeoutInput || timeoutInput <= 0 ? MAX_TIMEOUT : Math.min(timeoutInput, MAX_TIMEOUT)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
core.debug(`Actor: ${this.buildActor}`)
|
core.debug(`Actor: ${this.buildActor}`)
|
||||||
|
|||||||
Reference in New Issue
Block a user