diff --git a/README.md b/README.md index d9b94fc..9d12274 100644 --- a/README.md +++ b/README.md @@ -116,17 +116,23 @@ Enjoy! ## Contributing -In order to publish the chart, you have to either use curl or helm cm-push. +1. Pull all dependencies before packaging. -```shell -helm package . -curl --user ':' -X POST --upload-file './.tgz' https://kolaente.dev/api/packages/vikunja/helm/api/charts -``` + ```shell + helm dependency update + ``` -```shell -helm package . -helm repo add --username '' --password '' vikunja https://kolaente.dev/api/packages/vikunja/helm -helm cm-push './.tgz' vikunja -``` +2. In order to publish the chart, you have to either use curl or helm cm-push. -As you can see, you do not have to specify the name of the repository, just the name of the organization. + ```shell + helm package . + curl --user ':' -X POST --upload-file './.tgz' https://kolaente.dev/api/packages/vikunja/helm/api/charts + ``` + + ```shell + helm package . + helm repo add --username '' --password '' vikunja https://kolaente.dev/api/packages/vikunja/helm + helm cm-push './.tgz' vikunja + ``` + + As you can see, you do not have to specify the name of the repository, just the name of the organization.