-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cba241a
commit b8dc232
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Chart Verifier | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
camunda-helm-dir: | ||
required: false | ||
description: The name of the helm directory | ||
default: camunda-platform-latest | ||
type: string | ||
|
||
jobs: | ||
verify-chart: | ||
name: Verify Chart | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
with: | ||
repository: camunda/camunda-platform-helm | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Install OpenShift Tools | ||
uses: redhat-actions/openshift-tools-installer@v1 | ||
with: | ||
source: "github" | ||
chart-verifier: "latest" | ||
|
||
- name: Verify Helm Chart | ||
run: | | ||
cd charts/${{ inputs.camunda-helm-dir }} | ||
chart-verifier verify . |