Skip to content

Merge branch 'dev1.0.0.7' #22

Merge branch 'dev1.0.0.7'

Merge branch 'dev1.0.0.7' #22

Workflow file for this run

name: NuGet Push
on:
push:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: actions/setup-dotnet@v1
- name: Pack
run: dotnet build --configuration Release
- name: Push
run: dotnet nuget push .\Source\*\*\bin\Release\*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NuGetAPIKey }} --skip-duplicate --no-symbols 1