Update README.md #118
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: Release Master NuGet | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
Release: | |
name: Release to Nuget | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Check out Repo | |
uses: actions/checkout@v2 | |
- name: Setup .NET Core 8.0.x | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 8.0.x | |
- name: Setup .NET Core 9.0.x | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 9.0.x | |
- name: Pack | |
run: dotnet pack EasyDbMigrator\\EasyDbMigrator.csproj -c Release | |
- name: Publish to Nuget | |
run: dotnet nuget push /home/runner/work/EasyDbMigrator/EasyDbMigrator/EasyDbMigrator/bin/Release/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate | |