otto/stdlib/dir
R Tyler Croy f8dc3af95e Update the cargo versions
Fixes #64
2021-03-03 22:04:25 -08:00
..
src Restructuring the models to allow for parallel execution of contexts 2020-11-14 15:43:28 -08:00
.gitignore Scaffolding for the dir step 2020-10-22 20:11:16 -07:00
Cargo.toml Update the cargo versions 2021-03-03 22:04:25 -08:00
README.adoc Scaffolding for the dir step 2020-10-22 20:11:16 -07:00
manifest.yml Relocate the primitive agent into the agent directory and wire in block scoped steps for the dir step 2020-10-22 20:35:49 -07:00

README.adoc

<html lang="en"> <head> </head>

dir step

The dir step allows for executing a block-scoped set of steps inside the user-specified directory.

Example usage
dir 'deploy', [
    sh 'pwd'
]
Example invocation file passed to entrypoint
---
parameters:
  directory: 'deploy'
  block:
    - symbol: sh
      parameters:
        script: 'pwd'
</html>