From 42ecc61a311d54c3d79d116cf13ff7f9dd09f93e Mon Sep 17 00:00:00 2001 From: Friedrich Wilken Date: Fri, 15 Dec 2023 10:05:06 +0100 Subject: [PATCH] deactivate module-template upload Deactivate the upload of the module-template. All functionality for the module-template will be removed eventually, in a follow up PR. --- scripts/render_and_upload_manifests.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/render_and_upload_manifests.sh b/scripts/render_and_upload_manifests.sh index 96068703..16a1e773 100755 --- a/scripts/render_and_upload_manifests.sh +++ b/scripts/render_and_upload_manifests.sh @@ -39,8 +39,9 @@ cat eventing-manager.yaml MODULE_VERSION=${PULL_BASE_REF} make module-build -echo "Generated moduletemplate.yaml:" -cat module-template.yaml +# TODO completly remove the rendering of the module-template from the repository. +# echo "Generated moduletemplate.yaml:" +# cat module-template.yaml echo "Updating github release with eventing-manager.yaml" @@ -66,5 +67,6 @@ fi UPLOAD_URL="https://uploads.github.com/repos/kyma-project/eventing-manager/releases/${RELEASE_ID}/assets" uploadFile "eventing-manager.yaml" "${UPLOAD_URL}?name=eventing-manager.yaml" -uploadFile "module-template.yaml" "${UPLOAD_URL}?name=module-template.yaml" +# TODO completly remove the rendering of the module-template from the repository. +# uploadFile "module-template.yaml" "${UPLOAD_URL}?name=module-template.yaml" uploadFile "config/samples/default.yaml" "${UPLOAD_URL}?name=eventing_default_cr.yaml"