mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 11:32:38 +02:00
chore: add --dependency-update
in helm make command
Plus add a minimal doc
This commit is contained in:
parent
3e6f8a6e7f
commit
d4bc91c41c
2 changed files with 2 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -49,7 +49,7 @@ docker: ## Create a new Docker image and publish it
|
|||
.PHONY: helm
|
||||
helm: ## Build the helm chart and publish it
|
||||
$(eval VERSION=$(shell hatch version))
|
||||
$(eval PACKAGE=$(shell helm package --app-version ${VERSION} ./charts/umap | grep "Successfully packaged" | awk '{print $$NF}'))
|
||||
$(eval PACKAGE=$(shell helm package --dependency-update --app-version ${VERSION} ./charts/umap | grep "Successfully packaged" | awk '{print $$NF}'))
|
||||
@echo "Successfully packaged helm chart in: ${PACKAGE}"
|
||||
helm push ${PACKAGE} oci://registry-1.docker.io/umap
|
||||
|
||||
|
|
|
@ -18,6 +18,7 @@ nav:
|
|||
- Icon packs: config/icons.md
|
||||
- Deployment:
|
||||
- Docker: deploy/docker.md
|
||||
- Helm: deploy/helm.md
|
||||
- Nginx: deploy/nginx.md
|
||||
- Changelog: changelog.md
|
||||
theme:
|
||||
|
|
Loading…
Reference in a new issue