Skip to content

myci-actions/publish-nuget

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

publish-nuget

Publish nuget package to a nuget repository.

Step syntax:

- name: <name>
  uses: myci-actions/publish-nuget@<version>
  with:
    filename: <filename>
    api-key: <api-key>
    repo-url: <repo-url>

Arguments:

  • <filename> - filename of the .nupkg package to publish. Can be specified as wildcard, e.g. *.nupkg.

  • <api-key> - API key to access the nuget repository.

  • <repo-url> - URL of the nuget repository to publish the package to. Default value is https://api.nuget.org/v3/index.json.

Step example:

- name: publish nuget package
  uses: myci-actions/publish-nuget@5
  with:
    filename: '*.nupkg'
    api-key: ${{ secrets.NUGET_DOT_ORG_API_KEY }}

About

Publish nuget package

Resources

License

Stars

Watchers

Forks

Packages

No packages published