Skip to content

Commit 17a3785

Browse files
close #85 - added nightly build definition. (#182)
1 parent 8f2e63c commit 17a3785

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

build-system/nightly-builds.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Release task for PbLib projects
2+
# See https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema for reference
3+
4+
pool:
5+
vmImage: vs2017-win2016
6+
demands: Cmd
7+
8+
trigger: none
9+
pr: none
10+
11+
schedules:
12+
- cron: "0 0 * * *"
13+
displayName: Daily midnight build
14+
branches:
15+
include:
16+
- dev
17+
18+
variables:
19+
- group: nugetKeys #create this group with SECRET variables `nugetKey`
20+
21+
steps:
22+
- task: BatchScript@1
23+
displayName: 'FAKE Build'
24+
inputs:
25+
filename: build.cmd
26+
arguments: 'Nuget nugetprerelease=dev nugetpublishurl=$(nightlyUrl) nugetkey=$(nightlyKey)'

0 commit comments

Comments
 (0)