Skip to content

deployment fix

deployment fix #10

Workflow file for this run

# For more information see:
# https://thegraybook.vvvv.org/reference/extending/publishing.html
name: push_nuget
# on push on main
on:
push:
branches:
- main
paths-ignore:
- README.md
jobs:
build:
runs-on: windows-latest
steps:
- name: Git Checkout
uses: actions/checkout@master
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2
- name: Setup Nuget.exe
uses: nuget/setup-nuget@v1
- name: Publish VL Nuget
uses: vvvv/PublishVLNuget@1.0.42
with:
csproj: src\VL.Augmenta.csproj
nuspec: deployment\VL.Augmenta.nuspec
icon-src: https://raw.githubusercontent.com/vvvv/PublicContent/master/nugeticon.png
icon-dst: ./deployment/nugeticon.png
nuget-key: ${{ secrets.VVVV_ORG_NUGET_KEY }}