Skip to content

version 5.5.0-beta.6 #74

version 5.5.0-beta.6

version 5.5.0-beta.6 #74

Workflow file for this run

name: deploy
on:
push:
branches: [ "main" ]
jobs:
deploy:
environment: PROD
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.x.x
- name: Restore dependencies
run: dotnet restore
- name: Pack
run: dotnet pack src/NBomber.Contracts/NBomber.Contracts.fsproj -c Release -o artifacts --include-source
- name: Publish
run: dotnet nuget push artifacts/**.nupkg -s https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_TOKEN }}