[OOM] Publish helm charts when releasing
When a release is created, we want to make and push the charts to a
place where everybody can retrieve them instead of making them in their
side.
Issue-ID: OOM-1238
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: Ibedfe874c76d4ae11f3f759737e550ba0e5e3d33
diff --git a/shell/publish_helm_charts.sh b/shell/publish_helm_charts.sh
index 23c5fbd..9c511c5 100755
--- a/shell/publish_helm_charts.sh
+++ b/shell/publish_helm_charts.sh
@@ -20,8 +20,7 @@
curl -n --upload-file "$chart" "https://nexus.onap.org/content/sites/oom-helm-$BUILD_TYPE/$GERRIT_BRANCH/$GIT_COMMIT/$chart"
;;
'release')
- echo "Release automation not implemented yet."
- exit 1
+ curl -n --upload-file "$chart" "https://nexus.onap.org/content/sites/oom-helm-$BUILD_TYPE/$chart"
;;
*)
echo "You must set BUILD_TYPE to one of (snapshot, staging, release)."