Skip to content

Update nuget.yml

Update nuget.yml #11

Workflow file for this run

name: Publish Packages
on:
push:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Publish TheAirBlow.Syndical.Library
uses: brandedoutcast/[email protected]
with:
PROJECT_FILE_PATH: TheAirBlow.Syndical.Library/TheAirBlow.Syndical.Library.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}