2024-09-10 16:44:22 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- helm/*
|
2024-09-10 16:47:26 +00:00
|
|
|
- .forgejo/workflows/validate-helm-render.yaml
|
2024-09-10 16:44:22 +00:00
|
|
|
jobs:
|
|
|
|
render-helm:
|
|
|
|
runs-on: docker
|
|
|
|
container:
|
|
|
|
image: library/alpine
|
|
|
|
steps:
|
|
|
|
- run: apk add --no-cache nodejs git helm kubectl
|
2024-09-10 16:47:26 +00:00
|
|
|
- uses: actions/checkout@v3
|
2024-09-10 16:49:36 +00:00
|
|
|
- run: helm/render-all.sh || ls -lha
|
2024-09-10 16:44:22 +00:00
|
|
|
- run: git diff --exit-code
|