add support for Azure DevOps Pipelines

resolves #18
This commit is contained in:
Kevin Marquette
2018-10-16 09:14:03 -07:00
parent e7e2612082
commit e20c048eb1
2 changed files with 35 additions and 3 deletions

26
azure-pipelines.yml Normal file
View File

@@ -0,0 +1,26 @@
# 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
#resources:
#- repo: self
# clean: true
# fetchDepth: 1
#queue:
# name: Hosted VS2017
trigger:
batch: true
branches:
include:
- master
pool:
vmImage: 'Ubuntu 16.04'
steps:
- script: pwsh -File build.ps1 Publish
displayName: 'Build and Publish Module'
env:
nugetapikey: $(nugetapikey)