diff --git a/charts/nextcloud/Makefile b/charts/nextcloud/Makefile index 4e6b4de..95f5dff 100644 --- a/charts/nextcloud/Makefile +++ b/charts/nextcloud/Makefile @@ -1,14 +1,17 @@ VERSION := $(shell yq -r .version Chart.yaml) build_only: - helm dependency build - helm package . + helm package . --dependency-update -cleanup: +push_only: + helm push nextcloud-${VERSION}.tgz oci://git.djf.lol/davidfrickert/nextcloud + +build_cleanup: rm -r charts + +push_cleanup: rm nextcloud-${VERSION}.tgz -build: build_only cleanup +build: build_only build_cleanup -push: - helm push nextcloud-${VERSION}.tgz oci://git.djf.lol/davidfrickert/nextcloud \ No newline at end of file +push: push_only push_cleanup