Skip to content

Bump Serilog.Sinks.Console from 4.1.0 to 5.0.0 in /src/CommonTK.Console #22

Bump Serilog.Sinks.Console from 4.1.0 to 5.0.0 in /src/CommonTK.Console

Bump Serilog.Sinks.Console from 4.1.0 to 5.0.0 in /src/CommonTK.Console #22

Workflow file for this run

name: Gawe CI
on:
workflow_dispatch:
inputs:
deploy:
description: Create and Deploy package
type: boolean
default: true
nuget-deploy:
description: Deploy package to NuGet gallery
type: boolean
default: true
push:
paths:
- 'src/**'
branches: [master, dev]
pull_request:
branches: [master]
permissions:
contents:
write
packages:
write
pull-requests:
write
jobs:
build:
uses: SAPTeamDEV/Gawe/.github/workflows/dotnet.yml@master
with:
build-path: 'src/*/*.csproj'
test-path: ''
deploy-path: 'src/*/*.csproj'
deploy: ${{ !contains(inputs.deploy, 'false') }}
nuget-deploy: ${{ !contains(inputs.nuget-deploy, 'false') }}
secrets: inherit