Skip to content

📝 Update README

📝 Update README #47

Workflow file for this run

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