2 Commits

Author SHA1 Message Date
Iain Sproat c67919d0a2 CircleCI was placing tagged versions in incubator instead of stable (#20) 2022-11-25 10:21:02 +00:00
Iain Sproat 62bc6ef79e CircleCI should not build and build-and-publish for tags (#19)
- it should only build-and-publish
2022-11-25 09:55:28 +00:00
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -18,7 +18,8 @@ workflows:
- docker-build:
filters:
tags: *filter-allow-all
tags: &filter-ignore-all
ignore: /.*/
branches:
ignore:
- main
+1 -1
View File
@@ -37,7 +37,7 @@ git config user.email "${GIT_EMAIL}"
git config user.name "${GIT_USERNAME}"
git fetch
git switch "${HELM_PACKAGE_BRANCH}"
if [ "${CIRCLE_BRANCH}" == "${HELM_STABLE_BRANCH}" ]; then
if [[ -n "${CIRCLE_TAG}" || "${CIRCLE_BRANCH}" == "${HELM_STABLE_BRANCH}" ]]; then
echo "🛻 copying packages to stable directory"
cp -a "${TEMP_PACKAGE_DIR}" stable/
pushd stable