fix/feat: Allow to use JSON configuration in Helm Chart to mitigate #… #64
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
name: Build & Test & Make snapshot | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
uses: kube-cicd/.github/.github/workflows/app.common.yaml@main | |
secrets: | |
containerRegistryUsername: "${{ secrets.QUAY_USERNAME }}" | |
containerRegistryPassword: "${{ secrets.QUAY_PASSWORD }}" | |
with: | |
containerImage: "quay.io/pipelines-feedback/batchv1" | |
containerRegistryHost: "quay.io" | |
release-helm: | |
uses: kube-cicd/.github/.github/workflows/helm.common.yaml@main | |
needs: [ "build" ] | |
secrets: | |
registryUsername: "${{ secrets.QUAY_USERNAME }}" | |
registryPassword: "${{ secrets.QUAY_PASSWORD }}" | |
with: | |
chartRepoName: "pipelines-feedback" | |
chartName: "batchv1-chart" | |
chartPath: "charts/batchv1-chart" | |
enableHelmDocs: false | |
registryHost: "quay.io" |