Publish to Nuget #7
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: Publish to Nuget | |
on: workflow_dispatch | |
jobs: | |
publish-to-nuget: | |
runs-on: windows-2022 | |
env: | |
Configuration: Release | |
Solution_Name: Source\EpubReader.sln | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 7 | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v2 | |
- name: Restore dependencies | |
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration /p:RestorePackagesConfig=true | |
- name: Build solution | |
run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration | |
- name: Make Nuget package | |
run: nuget.exe pack Source\VersOne.Epub\VersOne.Epub.nuspec | |
- name: Publish Nuget package | |
run: nuget.exe push *.nupkg -Source https://api.nuget.org/v3/index.json -ApiKey ${{ secrets.NUGET_API_KEY }} -SkipDuplicate |