Skip to content

Added invalid cookie tests (#2297) #319

Added invalid cookie tests (#2297)

Added invalid cookie tests (#2297) #319

Workflow file for this run

name: Build and deploy
on:
push:
paths-ignore:
- 'docs/**'
- 'yarn.lock'
- 'package.json'
- '**/*.md'
branches:
- dev
tags:
- '*'
permissions:
contents: read
id-token: write
jobs:
nuget:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
-
name: Unshallow
run: git fetch --prune --unshallow
-
name: NuGet login
uses: NuGet/login@v1
id: nuget-login
with:
user: ${{ secrets.NUGET_USER }}
-
name: Create and push NuGet package
run: |
dotnet pack -c Release -o nuget -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg
dotnet nuget push **/*.nupkg --api-key ${{ steps.nuget-login.outputs.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate