diff --git a/build/aro/webhooks-client/azure-pipelines.yml b/build/aro/webhooks-client/azure-pipelines.yml new file mode 100644 index 000000000..d781d2130 --- /dev/null +++ b/build/aro/webhooks-client/azure-pipelines.yml @@ -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)