move to a more specific folder to avoid naming conflicts in the future #19
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: | |
# push: | |
# branches: | |
# - main | |
# jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Setup .NET | |
# uses: actions/setup-dotnet@v3 | |
# with: | |
# dotnet-version: '8.0.x' | |
# - name: Restore dependencies | |
# run: dotnet restore | |
# - name: Test | |
# run: dotnet test --verbosity normal | |
# - name: Pack | |
# run: dotnet pack -c Release -o nupkg | |
# - name: Publish to NuGet | |
# run: dotnet nuget push "nupkg/*.nupkg" --api-key ${{ secrets.NUGETAPIKEY }} --source https://api.nuget.org/v3/index.json |