Added many, many more actions.

This commit is contained in:
2025-06-24 15:24:16 -07:00
parent 62fbe4dead
commit 57ef232d2b
108 changed files with 4212 additions and 7 deletions

View File

@@ -0,0 +1,24 @@
name: dotnet-push
description: "Push a nuget package with dotnet."
inputs:
nupkg:
description: "Path to the .nupkg to push."
required: true
url:
description: "URL of the nuget repository to push to."
required: true
default: ${{ github.server_url }}/_registry/nuget/${{ github.repository_owner }}/index.json
apiKey:
description: "ApiKey of the nuget repository to push to."
required: true
default: ${{ github.token }}
options:
description: "Additional options when pushing the .nupkg."
required: false
runs:
using: "composite"
steps:
- name: "Push the NuGet package."
uses: act/common/dotnet/dotnet@master
with:
command: nuget push ${{ inputs.nupkg }} -s ${{ inputs.url }} -k ${{ inputs.apiKey }} ${{ inputs.options }}