add updates to devops, nuget, packages, readmes and sdk (#41) #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NET | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
BuildConfig: Release | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel previous builds in PR | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # avoid shallow clone so nbgv can do its work. | |
- name: 'Install .NET SDK' | |
uses: actions/setup-dotnet@v3 | |
with: | |
global-json-file: ./global.json | |
- name: Versioning | |
uses: dotnet/nbgv@master | |
id: nbgv | |
- name: Version Info | |
run: | | |
echo 'SemVer2: ${{ steps.nbgv.outputs.SemVer2 }}' | |
- name: Build with dotnet | |
run: dotnet build | |
--configuration ${{ env.BuildConfig }} | |
/p:Version=${{ steps.nbgv.outputs.AssemblyVersion }} | |
- name: Test with dotnet | |
run: dotnet test | |
- name: Pack NuGet | |
run: dotnet pack | |
--configuration ${{ env.BuildConfig }} | |
/p:Version=${{ steps.nbgv.outputs.NuGetPackageVersion }} | |
- name: Push to NuGet | |
run: dotnet nuget push **/*.nupkg | |
--api-key ${{ secrets.NUGET_DEPLOY_KEY }} | |
--source https://api.nuget.org/v3/index.json | |
--no-symbols | |
--skip-duplicate |