Skip to content

Ok try it without the skip #5

Ok try it without the skip

Ok try it without the skip #5

Workflow file for this run

name: Publish NuGet package
on:
workflow_dispatch:
push:
tags: [ 'release-*' ]
jobs:
publish:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup .NET
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: '7.0.x'
- name: Build for publish
run: dotnet publish -c Release
- name: Publish NuGet package
run: |
dotnet nuget push publish\Core\*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json