Added Webhooks Client build pipeline

This commit is contained in:
Tim McCarthy 2020-02-25 10:54:40 -08:00
parent 99a2650734
commit d649a47352

View File

@ -0,0 +1,23 @@
variables:
ProjectName: WebhookClient
OpenShiftProject: development
AppName: webhooksclient
OpenShiftServiceConnection: 'OpenShift on ARO'
trigger:
branches:
include:
- master
- dev
paths:
include:
- src/Web/WebhookClient/*
jobs:
- template: ../webapp-build-artifacts.yml
parameters:
ProjectName: $(ProjectName)
- template: ../webapp-container-build.yml
parameters:
ProjectName: $(ProjectName)
OpenShiftProject: $(OpenShiftProject)
AppName: $(AppName)
OpenShiftServiceConnection: $(OpenShiftServiceConnection)