Skip to content

Merge pull request #9 from DetNordjyskeMediehus/cleanup-dependencies #6

Merge pull request #9 from DetNordjyskeMediehus/cleanup-dependencies

Merge pull request #9 from DetNordjyskeMediehus/cleanup-dependencies #6

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Release NuGet package
on:
push:
branches: [ "releases/**" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal
- name: Pack
run: dotnet pack --configuration Release
- name: Release
run: dotnet nuget push ./Source/bin/Release/Dnmh.Security.ApiKeyAuthentication.*.nupkg --api-key "${{ secrets.NUGET_API_KEY }}" --source https://api.nuget.org/v3/index.json