-
-
Notifications
You must be signed in to change notification settings - Fork 33
32 lines (27 loc) · 739 Bytes
/
main.yml
File metadata and controls
32 lines (27 loc) · 739 Bytes
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
name: push_nuget
on:
workflow_dispatch:
inputs:
version:
description: 'The version to push'
required: false
default: 'X.X.X'
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/setup-nuget@v2.0.0
- name: Publish VL Nuget
uses: vvvv/PublishVLNuget@1.0.46
with:
csproj: 'src\Fuse\Fuse.csproj,src\OctreePly\OctreePly.csproj'
nuspec: deployment\VL.Fuse.nuspec
version: ${{ github.event.inputs.version }}
nuget-key: ${{ secrets.NUGET_KEY }}