Skip to content

push nuget

push nuget #8

Workflow file for this run

name: push_nuget
on:
push:
branches:
- main
paths-ignore:
- README.md
jobs:
build:
runs-on: windows-latest
steps:
- name: Git Checkout
uses: actions/checkout@main
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
- name: Setup Nuget.exe
uses: nuget/setup-nuget@v2.0.0
- name: Publish VL Nuget
uses: vvvv/PublishVLNuget@1.0.43
with:
# Fill the Icon file
icon-src: https://raw.githubusercontent.com/vvvv/PublicContent/master/nugeticon.png
icon-dst: ./deployment/nugeticon.png
# Provide the nuget key. See: https://thegraybook.vvvv.org/reference/extending/publishing.html#getting-a-nugetorg-api-key
nuget-key: ${{ secrets.NUGET_KEY }}
csproj: csharp\SCSynth\SCSynth.csproj
nuspec: deployment\VL.SCSynth.nuspec
icon-dst: ./nugeticon.png

Check failure on line 38 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / push_nuget

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 38, Col: 9): 'icon-dst' is already defined .github/workflows/main.yml (Line: 39, Col: 9): 'nuget-key' is already defined
nuget-key: ${{ secrets.NUGET_KEY }}