From d4de1e7f3d132799d8e3983df090f615c41eadd6 Mon Sep 17 00:00:00 2001 From: Iain Sproat <68657+iainsproat@users.noreply.github.com> Date: Fri, 25 Nov 2022 10:55:42 +0000 Subject: [PATCH] Copy the files in the build directory, not the directory (#22) --- .circleci/package_and_publish_helm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/package_and_publish_helm.sh b/.circleci/package_and_publish_helm.sh index c788a23..adca40d 100755 --- a/.circleci/package_and_publish_helm.sh +++ b/.circleci/package_and_publish_helm.sh @@ -39,7 +39,7 @@ git fetch git switch "${HELM_PACKAGE_BRANCH}" if [[ -n "${CIRCLE_TAG}" || "${CIRCLE_BRANCH}" == "${HELM_STABLE_BRANCH}" ]]; then echo "🛻 copying packages to stable directory" - cp -a "${TEMP_PACKAGE_DIR}" stable/ + cp -a "${TEMP_PACKAGE_DIR}/." stable/ pushd stable helm repo index . popd