Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: NETCore
on:
push:
branches:
- master
- main
pull_request:
types: [closed]
branches:
- master
- main

env:
BuildConfig: Release
Expand All @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.

- uses: dotnet/nbgv@master # https://github.com/dotnet/nbgv
id: nbgv

Expand All @@ -32,10 +32,10 @@ jobs:
/p:Version=${{ steps.nbgv.outputs.AssemblyVersion }}

- name: Test with dotnet
run: dotnet test
run: dotnet test

- name: Pack NuGet
run: dotnet pack
run: dotnet pack
--configuration ${{ env.BuildConfig }}
/p:Version=${{ steps.nbgv.outputs.NuGetPackageVersion }}

Expand Down