Skip to content

Bump coverlet.msbuild from 6.0.1 to 6.0.2 #615

Bump coverlet.msbuild from 6.0.1 to 6.0.2

Bump coverlet.msbuild from 6.0.1 to 6.0.2 #615

Workflow file for this run

name: BuildTestDeploy
on:
workflow_dispatch:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
branches:
- 'main'
paths-ignore:
- '.editorconfig'
- '.gitattributes'
- '.gitignore'
- '.runsettings'
- 'LICENSE.txt'
- 'README.md'
pull_request:
branches:
- 'main'
paths-ignore:
- '.editorconfig'
- '.gitattributes'
- '.gitignore'
- '.runsettings'
- 'LICENSE.txt'
- 'README.md'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
call-build-test:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
fail-fast: true
uses: Vectron/GithubWorkflows/.github/workflows/BuildAndTest.yml@main
with:
os: ${{ matrix.os }}
dotnet_version: |
6.0.x
7.0.x
8.0.x
solution_file: PlcInterface.sln
call-deploy:
needs: call-build-test
permissions:
packages: write
uses: Vectron/GithubWorkflows/.github/workflows/DeployNugetGithub.yml@main
with:
os: ubuntu-latest
dotnet_version: |
6.0.x
7.0.x
8.0.x
solution_file: PlcInterface.sln
secrets:
NUGET_KEY: ${{ secrets.NUGET_KEY }}
call-release:
needs: call-build-test
permissions:
deployments: write
contents: write
uses: Vectron/GithubWorkflows/.github/workflows/CreateRelease.yml@main