Based on @actions' sh, with more utilities available
Executes each command listed in the Action's args
via bash -c
.
The lib.sh
functions are available on the container, at /lib.sh
, if scripts
would like to use the functions.
action "Shell" {
uses = "bltavares/actions/bash@master"
args = ["ls -ltr"]
}