26 lines
667 B
Makefile
26 lines
667 B
Makefile
.DEFAULT_GOAL := all
|
|
|
|
|
|
configure:
|
|
@mkdir -p _build/
|
|
helm repo add bitnami https://charts.bitnami.com/bitnami
|
|
|
|
homebox_ci: configure
|
|
helm dependency build charts/stable/homebox/
|
|
helm lint charts/stable/homebox/
|
|
homebox: configure homebox_ci
|
|
helm package charts/stable/homebox/ -d _build/
|
|
|
|
romm_ci: configure
|
|
helm dependency build charts/stable/romm/
|
|
helm lint charts/stable/romm/
|
|
romm: configure romm_ci
|
|
helm package charts/stable/romm/ -d _build/
|
|
|
|
index:
|
|
curl -L -o index.yaml https://charts.coo-ops.space/index.yaml
|
|
helm repo index _build/ --url https://charts.coo-ops.space --merge index.yaml
|
|
|
|
ci: homebox_ci romm_ci
|
|
stable: homebox romm
|
|
all: stable index |