forked from microsoft/automatic-graph-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
42 lines (34 loc) · 1.04 KB
/
azure-pipelines.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
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: windows-latest
steps:
- task: NuGetCommand@2
inputs:
command: 'restore'
restoreSolution: 'GraphLayout/GraphLayout.sln'
feedsToUse: 'select'
- task: MSBuild@1
inputs:
solution: 'GraphLayout/GraphLayout.sln'
msbuildArchitecture: 'x64'
configuration: release
platform: 'any cpu'
- task: GitHubRelease@1
inputs:
gitHubConnection: 'MSAGLRelease'
repositoryName: '$(Build.Repository.Name)'
action: edit
target: '$(Build.SourceVersion)'
tagSource: 'userSpecifiedTag'
tag: 'MSAGL-Build'
title: 'Latest build'
isPreRelease: true
changeLogCompareToRelease: 'lastNonDraftRelease'
changeLogType: 'commitBased'
assets: $(Build.SourcesDirectory)/GraphLayout/MSAGL/bin/Release/netstandard2.0/*
$(Build.SourcesDirectory)//GraphLayout/tools/agl/bin/Release/netstandard2.0/*