14 lines
289 B
YAML
14 lines
289 B
YAML
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
|