Skip to content

Fix memory issue with expression constants (#93) #6

Fix memory issue with expression constants (#93)

Fix memory issue with expression constants (#93) #6

Workflow file for this run

name: Publish NuGet package
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Build packages
run: dotnet build --configuration 'Release'
- name: Pack NuGet packages
run: dotnet pack --configuration 'Release' --output 'out'
- name: Push NuGet packages to nuget.org
run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate