📝 Update README #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'CleanArchitecture.nuspec' | |
jobs: | |
publish: | |
name: Publish to NuGet.org | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout code | |
- uses: nuget/setup-nuget@v1 | |
name: Setup NuGet | |
with: | |
nuget-version: '6.x' | |
- name: Create the package | |
run: nuget pack CleanArchitecture.nuspec -NoDefaultExcludes | |
- name: Publish the package | |
run: nuget push *.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}} -SkipDuplicate |