Skip to content

Update ICachingUniqueKeyGenerationService method #7

Update ICachingUniqueKeyGenerationService method

Update ICachingUniqueKeyGenerationService method #7

Workflow file for this run

name: .NET to NuGet
on:
push:
branches: [ master ]
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: '8.0.x' # Replace with your .NET version
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build
- name: Pack
run: dotnet pack --no-build --output nupkg
- name: Push to NuGet
run: dotnet nuget push ./nupkg/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json