Skip to content
This repository has been archived by the owner on Mar 18, 2023. It is now read-only.
/ actions-old Public archive
forked from bltavares/actions

Latest commit

 

History

History
18 lines (13 loc) · 400 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 400 Bytes

sh action

Based on @actions' sh, with more utilities available

Usage

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"]
}