Skip to content

Commit

Permalink
🚧 feat(helm): Test CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
MfCrizz committed Aug 18, 2023
1 parent 027c609 commit 204950d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/helmlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,22 @@ jobs:
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --chart-dirs . --target-branch ${{ github.event.repository.default_branch }} --validate-maintainers=false


- name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true'
uses: helm/[email protected]


- name: Add MariaDB repo
if: steps.list-changed.outputs.changed == 'true'
run: helm repo add bitnami https://charts.bitnami.com/bitnam


- name: Install MariaDB
if: steps.list-changed.outputs.changed == 'true'
run: helm install unguard-mariadb bitnami/mariadb --set primary.persistence.enabled=false --wait --namespace unguard --create-namespace


- name: Run chart-testing (install)
if: steps.list-changed.outputs.changed == 'true'
run: ct install --chart-dirs . --target-branch ${{ github.event.repository.default_branch }}

0 comments on commit 204950d

Please sign in to comment.