15 lines
350 B
YAML
15 lines
350 B
YAML
on:
|
|
push:
|
|
paths:
|
|
- helm/**
|
|
- .forgejo/workflows/validate-helm-render.yaml
|
|
jobs:
|
|
render-helm:
|
|
runs-on: docker
|
|
container:
|
|
image: library/alpine
|
|
steps:
|
|
- run: apk add --no-cache nodejs git helm kubectl bash
|
|
- uses: actions/checkout@v4
|
|
- run: ./helm/render-all.sh
|
|
- run: git diff --exit-code
|