Uploaded many more actions.

This commit is contained in:
2025-07-01 13:17:09 -07:00
parent d49aadb058
commit 3148d266f2
10 changed files with 318 additions and 32 deletions

View File

@@ -7,7 +7,10 @@ inputs:
url:
description: "URL of the nuget repository to push to."
required: true
default: ${{ github.server_url }}/_registry/nuget/${{ github.repository_owner }}/index.json
# This is for GitHub.
#default: ${{ github.server_url }}/_registry/nuget/${{ github.repository_owner }}/index.json
# This is for Gitea.
default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json
apiKey:
description: "ApiKey of the nuget repository to push to."
required: true
@@ -21,4 +24,4 @@ runs:
- 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 }}
command: nuget push ${{ inputs.nupkg }} -s ${{ inputs.url }} -k ${{ inputs.apiKey }} ${{ inputs.options }}