-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (33 loc) · 1.09 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: push_nuget
# on push on master
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@v2
- name: Setup Nuget.exe
uses: nuget/setup-nuget@v2.0.0
- name: Publish VL.Audio Nuget
uses: vvvv/PublishVLNuget@1.0.43
with:
csproj: VL.Audio\src\VL.Audio.csproj
nuspec: VL.Audio\deployment\VL.Audio.nuspec
icon-src: https://raw.githubusercontent.com/vvvv/PublicContent/master/nugeticon.png
icon-dst: ./VL.Audio/deployment/nugeticon.png
nuget-key: ${{ secrets.VVVV_ORG_NUGET_KEY }}
- name: Publish VL.Audio.UI Nuget
uses: vvvv/PublishVLNuget@1.0.43
with:
nuspec: VL.Audio.UI\deployment\VL.Audio.nuspec
icon-src: https://raw.githubusercontent.com/vvvv/PublicContent/master/nugeticon.png
icon-dst: ./VL.Audio.UI/deployment/nugeticon.png
nuget-key: ${{ secrets.VVVV_ORG_NUGET_KEY }}