acts-package-shell
The acts shell package plugin for acts.
Installation
Start
use EngineBuilder;
use ShellPackagePlugin;
async
Example
name: shell example
id: shell-example
inputs:
my_input: "hello, world"
steps:
- name: shell step
acts:
- uses: acts.app.shell
params:
shell: nu
content-type: json
script: |
let data = "{{ my_input }}"
$data | split row ',' | each { |it| $it | str trim } | to json