test
This commit is contained in:
25
itchio/butler/action.yaml
Normal file
25
itchio/butler/action.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
name: butler
|
||||
description: "Run butler client commands."
|
||||
inputs:
|
||||
command:
|
||||
description: "Arguments to pass into butler."
|
||||
required: true
|
||||
apiKey:
|
||||
description: "Itch.io API key."
|
||||
required: true
|
||||
catchErrors:
|
||||
description: "Whether or not errors should be handled."
|
||||
required: false
|
||||
outputs:
|
||||
console:
|
||||
description: "The console output of the butler command."
|
||||
exitCode:
|
||||
description: "How the program exited."
|
||||
runs:
|
||||
using: docker
|
||||
image: Dockerfile
|
||||
env:
|
||||
CATCH_ERRORS: ${{ inputs.catchErrors }}
|
||||
BUTLER_API_KEY: ${{ inputs.apiKey }}
|
||||
args:
|
||||
- ${{ inputs.command }}
|
||||
Reference in New Issue
Block a user