generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 2
36 lines (34 loc) · 1.07 KB
/
ci-cd-debezium-tools.yaml
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
name: Continuous Integration And Deployment On Push to Tools
#This is only for testing purpose and will be deleted in future.
on:
workflow_dispatch: # TODO this is there for testing purposes, once the pipelines are all done, remove this
push:
branches:
# - 'dev
- 'etl-debezium-poc' #test
paths:
- 'backend/**'
- 'frontend/**'
- '.github/workflows/ci-cd-debezium-tools.yaml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
builds:
name: Builds
uses: ./.github/workflows/_build.yml
strategy:
matrix:
component: [ backend/etl/debezium-jdbc ]
include:
- component: backend/etl/debezium-jdbc
triggers: ('backend/etl/debezium-jdbc/')
- component: backend/etl/debezium-postgis/15-3.3
triggers: ('backend/etl/debezium-postgis/15-3.3/')
secrets:
gh_token: ${{ secrets.GITHUB_TOKEN }}
with:
component: ${{ matrix.component }}
img_build: "tools"
img_fallback: tools
triggers: ${{ matrix.triggers }}