Skip to content

bugfix: using collection name as key for caching collections (#131) #96

bugfix: using collection name as key for caching collections (#131)

bugfix: using collection name as key for caching collections (#131) #96

Workflow file for this run

name: .NET Core
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup .NET Core
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
- name: Build
run: |
cd Orleans.Providers.MongoDB
dotnet pack --configuration Release
- name: Publish
run: |
dotnet nuget push **/*.nupkg --source 'https://api.nuget.org/v3/index.json' --skip-duplicate -k ${{ secrets.nuget }}
if: github.ref == 'refs/heads/master'