Skip to content

build: version 1.0.1 #6

build: version 1.0.1

build: version 1.0.1 #6

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://nuget.pkg.github.com/matigramirez/index.json
env:
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_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 ${{ secrets.GITHUB_TOKEN }}