go-toolbox/action.yml

19 lines
429 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:
2024-07-19 15:28:35 +05:00
- ${{ inputs.command }} ${{ inputs.args }}