Skip to content

v0.61.1

v0.61.1 #35

Workflow file for this run

name: Publish to NuGet
on:
release:
types: ["published"]
jobs:
Ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Setup Mono
run: sudo apt-get install -y mono-devel
- name: Build & Test
run: make pack
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: artifacts/
- name: Publish packages to NuGet
run: make push NUGET_SOURCE=https://api.nuget.org/v3/index.json NUGET_API_KEY=${{ secrets.NUGET_API_KEY }}