Files
reposilite-charts/Makefile
Markus Pesch 9bc7737209
All checks were successful
Helm / Execute helm lint (push) Successful in 11s
Helm / Execute helm template (push) Successful in 14s
Helm / Execute helm unittest (push) Successful in 10s
fix(ci): replace volker.raschek/helm with docker.io/alpine/helm
2025-10-16 21:35:44 +02:00

27 lines
767 B
Makefile

# CONTAINER_RUNTIME
CONTAINER_RUNTIME?=$(shell which podman)
# MISSING DOT
# ==============================================================================
missing-dot:
grep --perl-regexp '## @(param|skip).*[^.]$$' values.yaml
# README
# ==============================================================================
readme: readme/link readme/lint readme/parameters
readme/link:
npm install && npm run readme:link
readme/lint:
npm install && npm run readme:lint
readme/parameters:
npm install && npm run readme:parameters
# PHONY
# ==============================================================================
# Declare the contents of the PHONY variable as phony. We keep that information
# in a variable so we can use it in if_changed.
.PHONY: ${PHONY}