Skip to content

update to version 5 #41

update to version 5

update to version 5 #41

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
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
working-directory: src
- name: Build
run: dotnet build --no-restore
working-directory: src
- name: Test
run: dotnet test --no-build --verbosity normal
working-directory: src
- name: Publish
uses: brandedoutcast/publish-nuget@v2.5.5
with:
PROJECT_FILE_PATH: src/NLog.Targets.MicrosoftTeams/NLog.Targets.MicrosoftTeams.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}