Skip to content

nuget

nuget #11

Workflow file for this run

name: nuget
on:
push:
tags:
- "v*"
workflow_dispatch:
jobs:
nuget:
name: Publish NuGet package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: "7.0.x"
source-url: https://api.nuget.org/v3/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.NUGET_AUTH_TOKEN}}
- run: dotnet build ./src/Parsec --configuration Release
- name: Create NuGet package
run: dotnet pack ./src/Parsec --configuration Release
- name: Publish NuGet package
run: dotnet nuget push ./src/Parsec/bin/Release/*.nupkg --api-key "$NUGET_AUTH_TOKEN"