Updated .net actions.

This commit is contained in:
2025-07-07 20:58:04 -07:00
parent 50bfb1278e
commit d41bf186fe
11 changed files with 188 additions and 36 deletions

View File

@@ -11,8 +11,23 @@ inputs:
catchErrors:
description: "Whether or not errors should be handled."
required: false
nugetSources:
description: "List of additional NuGet sources to use."
required: false
default: ""
nugetUsernames:
description: "List of additional NuGet usernames to use."
required: false
default: ""
nugetPasswords:
description: "List of additional NuGet passwords to use."
required: false
default: ""
runs:
env:
NUGET_SOURCES: ${{ inputs.nugetSources }}
NUGET_USERNAMES: ${{ inputs.nugetUsernames }}
NUGET_PASSWORDS: ${{ inputs.nugetPasswords }}
PROGRAM: ${{ inputs.program }}
CATCH_ERRORS: ${{ inputs.catchErrors }}
using: 'docker'