15 lines
375 B
YAML
15 lines
375 B
YAML
name: busybox
|
|
description: "Run busybox commands."
|
|
inputs:
|
|
#Note: Passing in "args" overwrites the arguments passed into the container directly.
|
|
args:
|
|
description: "Shell command to pass into busybox."
|
|
required: true
|
|
outputs:
|
|
console:
|
|
description: "The console output of the command."
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
args:
|
|
- ${{ inputs.args }} |