inputs
This commit is contained in:
parent
886fcf3673
commit
c77674afa4
1 changed files with 5 additions and 6 deletions
|
@ -60,26 +60,25 @@ def install_actions() -> None:
|
|||
fs.make_directory(directory)
|
||||
match action:
|
||||
case "action":
|
||||
yaml = """\
|
||||
inputs:
|
||||
inputs = """\
|
||||
arg-1:
|
||||
required: true
|
||||
arg_2:
|
||||
required: true
|
||||
"""
|
||||
case "synchronize":
|
||||
yaml = """\
|
||||
inputs:
|
||||
inputs = """\
|
||||
source:
|
||||
default: out
|
||||
required: false
|
||||
"""
|
||||
yaml = f"""{yaml}\
|
||||
yaml = f"""\
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- run: {vpy} -m spcd {action}
|
||||
"""
|
||||
inputs:
|
||||
{inputs}"""
|
||||
fs.write(directory / name, yaml)
|
||||
cat(directory / name)
|
||||
|
||||
|
|
Loading…
Reference in a new issue