15 lines
290 B
YAML
15 lines
290 B
YAML
name: busybox
|
|
description: "Run busybox commands."
|
|
inputs:
|
|
args:
|
|
description: "Shell arguments to pass into busybox."
|
|
required: true
|
|
outputs:
|
|
console:
|
|
description: "The console output of the command."
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
args:
|
|
- ${{ inputs.args }}
|