This commit is contained in:
2025-06-30 00:58:23 -07:00
parent c7de24644f
commit 5feab19890
5 changed files with 110 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
name: dotnet-10
description: "Run a dotnet command."
inputs:
command:
description: "Dotnet command to run."
required: false
program:
description: "Program to run instead of dotnet. Default: dotnet"
required: false
default: "dotnet"
catchErrors:
description: "Whether or not errors should be handled."
required: false
runs:
env:
PROGRAM: ${{ inputs.program }}
CATCH_ERRORS: ${{ inputs.catchErrors }}
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.command }}