15 lines
305 B
YAML
15 lines
305 B
YAML
# action.yml
|
|
name: "Go Toolbox"
|
|
description: "A toolbox for golang applications development."
|
|
author: "Stanislav N. aka pztrn"
|
|
inputs:
|
|
command:
|
|
description: "Command to run."
|
|
required: true
|
|
default: "task -l"
|
|
runs:
|
|
using: "docker"
|
|
image: "Dockerfile"
|
|
args:
|
|
- ${{ inputs.command }}
|