DBZ-8654 Update QOSDK to 6.9.3 that introduces the possibility to override the operator image through the values.yaml #325
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright Debezium Authors | |
# | |
# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
name: Build Operator Sources | |
on: | |
pull_request: | |
branches: | |
- main | |
- 3.* | |
- 4.* | |
paths-ignore: | |
- '*.md' | |
push: | |
branches: | |
- main | |
- 3.* | |
- 4.* | |
paths-ignore: | |
- '*.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Debezium Operator | |
uses: actions/checkout@v4 | |
with: | |
path: operator | |
- uses: ./operator/.github/actions/maven-cache | |
- uses: ./operator/.github/actions/setup-java | |
- uses: ./operator/.github/actions/build-operator |