Files
go-toolbox/action.yml
T

15 lines
305 B
YAML
Raw Permalink Normal View History

2024-07-19 15:11:50 +05:00
# action.yml
name: "Go Toolbox"
description: "A toolbox for golang applications development."
author: "Stanislav N. aka pztrn"
inputs:
2024-07-19 23:19:23 +05:00
command:
2024-07-19 15:11:50 +05:00
description: "Command to run."
required: true
2024-07-19 23:19:23 +05:00
default: "task -l"
2024-07-19 15:11:50 +05:00
runs:
using: "docker"
image: "Dockerfile"
args:
2024-07-19 23:19:23 +05:00
- ${{ inputs.command }}