Skip to content

Merge pull request #14 from soenneker/dependabot/nuget/Soenneker.Test… #15

Merge pull request #14 from soenneker/dependabot/nuget/Soenneker.Test…

Merge pull request #14 from soenneker/dependabot/nuget/Soenneker.Test… #15

Workflow file for this run

name: Publish
on:
push:
branches:
- main
# Publish `v1.2.3` tags as releases.
tags:
- v*
jobs:
# Build, test and publish (if this is a push/merge).
publish-build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 7.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
publish-package:
needs: publish-build-and-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setting up build version
run: |
version=$(($GITHUB_RUN_NUMBER))
echo "BUILD_VERSION=1.0.$version" >> ${GITHUB_ENV}
- name: Setup .NET Core 7.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Pack
run: dotnet pack --no-build --configuration Release --output .
- name: Publish to nuGet
run: dotnet nuget push **\*.nupkg --source 'https://api.nuget.org/v3/index.json' --api-key ${{secrets.NUGET_API_KEY}} --skip-duplicate