Add workflow to render all helm charts and verify it does not cause a git diff
This commit is contained in:
parent
0749802038
commit
c593120e46
1 changed files with 14 additions and 0 deletions
14
.forgejo/workflows/validate-helm-render.yaml
Normal file
14
.forgejo/workflows/validate-helm-render.yaml
Normal file
|
@ -0,0 +1,14 @@
|
|||
on:
|
||||
push:
|
||||
paths:
|
||||
- helm/*
|
||||
jobs:
|
||||
render-helm:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: library/alpine
|
||||
steps:
|
||||
- run: apk add --no-cache nodejs git helm kubectl
|
||||
- uses: actions/checkout@v5
|
||||
- run: helm/render-all.sh
|
||||
- run: git diff --exit-code
|
Loading…
Reference in a new issue