mirror of
https://github.com/deployphp/action.git
synced 2025-04-01 19:06:35 +00:00
feat: add support for specifying a recipe file path
This commit is contained in:
parent
363bb1be96
commit
89978bf9ff
2 changed files with 11 additions and 1 deletions
|
@ -48,6 +48,11 @@ inputs:
|
|||
default: ''
|
||||
description: Path to local Deployer binary.
|
||||
|
||||
recipe:
|
||||
required: false
|
||||
default: ''
|
||||
description: Recipe file path.
|
||||
|
||||
ansi:
|
||||
required: false
|
||||
default: 'true'
|
||||
|
|
7
index.js
7
index.js
|
@ -106,6 +106,11 @@ async function dep() {
|
|||
}
|
||||
|
||||
let cmd = core.getInput('dep').split(' ')
|
||||
let recipe = core.getInput('recipe')
|
||||
if (recipe !== '') {
|
||||
recipe = `--file=${recipe}`
|
||||
}
|
||||
|
||||
let ansi = core.getBooleanInput('ansi') ? '--ansi' : '--no-ansi'
|
||||
let verbosity = core.getInput('verbosity')
|
||||
let options = []
|
||||
|
@ -118,7 +123,7 @@ async function dep() {
|
|||
}
|
||||
|
||||
try {
|
||||
await $`php ${dep} ${cmd} --no-interaction ${ansi} ${verbosity} ${options}`
|
||||
await $`php ${dep} ${cmd} ${recipe} --no-interaction ${ansi} ${verbosity} ${options}`
|
||||
} catch (err) {
|
||||
core.setFailed(`Failed: dep ${cmd}`)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue