https://github.com/albumprinter/actions-pack-and-push-nuget
https://github.com/albumprinter/actions-pack-and-push-nuget
area-infrastructure build-na compliant-yes deploy-na domain-customer-experience hosting-na old-domain-editors old-owner-online-editor owner-personalise serverless-no system-editors type-library
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/albumprinter/actions-pack-and-push-nuget
- Owner: albumprinter
- License: bsd-2-clause
- Created: 2021-11-15T16:37:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-26T08:32:25.000Z (over 2 years ago)
- Last Synced: 2025-06-15T06:06:52.147Z (about 1 year ago)
- Topics: area-infrastructure, build-na, compliant-yes, deploy-na, domain-customer-experience, hosting-na, old-domain-editors, old-owner-online-editor, owner-personalise, serverless-no, system-editors, type-library
- Size: 4.88 KB
- Stars: 0
- Watchers: 31
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pack And Push NuGet Package To NuGet Server
A GitHub Action to pack and push a [nuget package](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-nuget-push).
You could use [albumprinter/actions-get-git-version](https://github.com/albumprinter/actions-get-git-version) to get the semver using git log.
## Usage
```yaml
- uses: albumprinter/actions-pack-and-push-nuget@v1
with:
package: YOUR_PACKAGE_NAME
description: YOUR_PACKAGE_DESCRIPTION
version: YOUR_PACKAGE_VERSION or ${{ steps.git-version.outputs.version }}
paths: dist deploy.sh
server: ${{ secrets.ARTIFACTORY_DEPLOY_RELEASE_URL }}
username: ${{ secrets.ARTIFACTORY_USERNAME }}
password: ${{ secrets.ARTIFACTORY_USER_PASSWORD }}
```