Skip to content

Commit

Permalink
added chart verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
hamza-m-masood committed Aug 1, 2024
1 parent cba241a commit b8dc232
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/openshit-chart-verifier.yaml
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 .

0 comments on commit b8dc232

Please sign in to comment.