Skip to content

Report WrongExpectedVersion properly in SQL Server scripts (#376) #147

Report WrongExpectedVersion properly in SQL Server scripts (#376)

Report WrongExpectedVersion properly in SQL Server scripts (#376) #147

Workflow file for this run

name: Publish NuGet
on:
push:
paths-ignore:
- docs/**
tags:
- '*'
jobs:
nuget:
runs-on: self-hosted
steps:
-
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
-
name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Run tests
run: dotnet test --framework net8.0
-
name: Publish test results
uses: EnricoMi/publish-unit-test-result-action/linux@v2
if: always()
with:
files: |
test-results/**/*.xml
test-results/**/*.trx
-
name: Create and push NuGet package
run: |
dotnet pack -c Release -o nuget -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg
dotnet nuget push nuget/**/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
dotnet nuget push nuget/**/*.nupkg --api-key ${{ secrets.MYGET_API_KEY }} --source https://www.myget.org/F/${{ vars.MYGET_FEED_NAME || 'eventuous' }}/api/v2/package --skip-duplicate
env:
NUGET_AUTH_TOKEN: ${{ github.token }}