Skip to content

Update README.md

Update README.md #28

Workflow file for this run

name: Messaging
on:
push:
branches: [ master ]
paths:
- '**'
pull_request:
branches: [ master ]
paths:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
#- name: Test
#run: dotnet test --no-restore --verbosity normal
- name: Publish NuGet
uses: brandedoutcast/publish-nuget@v2.5.5
with:
PROJECT_FILE_PATH: ./Milvasoft.Messaging.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}