Adds support for MIDI program change (adds to issue #7) #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
# with: | |
# lfs: 'true' | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v2 | |
- name: Setup Nuget.exe | |
uses: nuget/[email protected] | |
- run: dotnet nuget add source --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name vvvv-org-feed "https://nuget.pkg.github.com/vvvv/index.json" | |
- name: Publish VL Nuget | |
uses: vvvv/[email protected] | |
with: | |
csproj: src\VL.Audio.VST.csproj | |
nuspec: deployment\VL.Audio.VST.nuspec | |
# Fill the Icon file | |
icon-src: https://raw.githubusercontent.com/vvvv/PublicContent/master/nugeticon.png | |
icon-dst: ./deployment/nugeticon.png | |
nuget-key: ${{ secrets.GITHUB_TOKEN }} | |
nuget-feed: vvvv-org-feed |