go-toolbox/action.yml

20 lines
435 B
YAML
Raw Normal View History

# action.yml
name: "Go Toolbox"
description: "A toolbox for golang applications development."
author: "Stanislav N. aka pztrn"
inputs:
command: # id of input
description: "Command to run."
required: true
default: "task"
args:
description: "Arguments to pass to command."
required: true
default: "-l"
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.command }}
- ${{ inputs.args }}