forked from x97mdr/pickles
-
Notifications
You must be signed in to change notification settings - Fork 164
35 lines (29 loc) · 1.03 KB
/
build.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
name: build-pickles
on:
push:
branches:
- release/*
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
name: Checkout Code
- name: Setup NuGet
uses: NuGet/[email protected]
#with:
# NuGet API Key to configure.
#nuget-api-key: # optional
# Source to scope the NuGet API Key to.
#nuget-api-key-source: # optional
- name: Restore NuGet Packages
run: nuget restore src\pickles\pickles.sln
- name: Run build
run: build.bat
#- name: Build and Publish Web App
# run: C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\msbuild SimpleFrameworkApp.sln /p:Configuration=Release /p:DeployOnBuild=true /p:PublishProfile=FolderProfile
#- name: Upload Artifact
# uses: actions/[email protected]
# with:
# name: published_webapp
# path: bin\Release\Publish