Skip to content

bump nuget version

bump nuget version #62

Workflow file for this run

name: ASP.NET Core CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.203
- name: Build with dotnet
run: |
dotnet build --configuration Release
cd IronBlock.Tests
dotnet test
- name: Publish
run: |
! dotnet nuget push **/*.nupkg --source 'https://api.nuget.org/v3/index.json' -k ${{ secrets.nuget }}
if: github.ref == 'refs/heads/master'