Try to make it github/gitea actionable.
This commit is contained in:
19
action.yml
Normal file
19
action.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
# 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 }}
|
||||
Reference in New Issue
Block a user