Files
common/mono/mono/action.yaml
2025-06-24 15:24:16 -07:00

24 lines
583 B
YAML

name: mono
description: "Run mono commands."
inputs:
command:
description: "Shell arguments to pass into mono."
required: true
program:
description: "Program to run instead of mono. Default: mono"
required: false
default: "mono"
catchErrors:
description: "Whether or not errors should be handled."
required: false
outputs:
console:
description: "The console output of the command."
runs:
env:
PROGRAM: ${{ inputs.program }}
CATCH_ERRORS: ${{ inputs.catchErrors }}
using: docker
image: Dockerfile
args:
- ${{ inputs.command }}