Skip to content

v18.1.0 - Fix initialization error in LimitedRange #135

v18.1.0 - Fix initialization error in LimitedRange

v18.1.0 - Fix initialization error in LimitedRange #135

Workflow file for this run

name: .NET
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup .NET 7.0
uses: actions/[email protected]
with:
dotnet-version: 7.0.100
- name: Setup nuget config
run: sed 's/GITHUB_TOKEN/${{ secrets.REGISTRY_TOKEN }}/g' .nuget.config > nuget.config
- name: Test with dotnet
run: dotnet test --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'
- name: Pack nuget
run: dotnet pack -o `pwd`/.nugets --configuration Release --no-build -v:m
- name: Push nuget
run: dotnet nuget push `pwd`/.nugets/*.nupkg -s https://nuget.pkg.github.com/interlockledger/index.json --skip-duplicate