Added Webhooks API build pipeline

This commit is contained in:
Tim McCarthy 2020-02-22 13:58:28 -08:00
parent 643207d4e1
commit 05de47e576

View File

@ -0,0 +1,24 @@
variables:
ProjectName: Webhooks.API
OpenShiftProject: development
AppName: webhooksapi
OpenShiftServiceConnection: 'OpenShift on ARO'
trigger:
branches:
include:
- master
- dev
paths:
include:
- src/BuildingBlocks/*
- src/Services/Webhooks/*
jobs:
- template: ../webapp-build-artifacts.yml
parameters:
ProjectName: $(ProjectName)
- template: ../webapp-container-build.yml
parameters:
ProjectName: $(ProjectName)
OpenShiftProject: $(OpenShiftProject)
AppName: $(AppName)
OpenShiftServiceConnection: $(OpenShiftServiceConnection)