Skip to content

Commit

Permalink
add helm lint to gha workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoblitt committed Apr 29, 2024
1 parent 1ccfa7c commit 9151f6d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,23 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

helm-lint:
runs-on: ubuntu-latest
name: helm lint
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install Helm
uses: azure/setup-helm@v4
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

- name: Run helm lint
run: cd charts/gnocpush && helm lint .

gh-release:
name: Create GitHub Release
needs: oci_image
Expand Down

0 comments on commit 9151f6d

Please sign in to comment.