14 lines
262 B
Makefile
14 lines
262 B
Makefile
VERSION := $(shell yq -r .version Chart.yaml)
|
|
|
|
build_only:
|
|
helm dependency build
|
|
helm package .
|
|
|
|
cleanup:
|
|
rm -r charts
|
|
rm nextcloud-${VERSION}.tgz
|
|
|
|
build: build_only cleanup
|
|
|
|
push:
|
|
helm push nextcloud-${VERSION}.tgz oci://git.djf.lol/davidfrickert/nextcloud
|