Skip to content

Bump Meziantou.Analyzer from 2.0.150 to 2.0.159 #285

Bump Meziantou.Analyzer from 2.0.150 to 2.0.159

Bump Meziantou.Analyzer from 2.0.150 to 2.0.159 #285

Workflow file for this run

name: .NET Core
on:
push:
paths-ignore:
- 'README.md'
pull_request:
paths-ignore:
- 'README.md'
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.102'
- name: Install Dependencies
run: dotnet restore
- name: Build (Release)
run: dotnet build --configuration Release --no-restore
- name: Test (Release)
run: dotnet test --configuration Release --no-build --no-restore
- name: Pack (Release)
run: dotnet pack --configuration Release --output .\nuget --no-build --no-restore
- name: Publish
if: github.event_name == 'push'
run: |
if ( "${{github.ref}}" -match "^refs/tags/[0-9]+\.[0-9]+\.[0-9]+$" ) {
dotnet nuget push .\nuget\*.nupkg -s nuget.org -k ${{secrets.NUGET_TOKEN}} --skip-duplicate
} else {
echo "publish is only enabled by tagging with a release tag"
}