From 267f7c4875cd6b575f05def1dc4a1f96a0ac14b8 Mon Sep 17 00:00:00 2001 From: justinsb Date: Sat, 15 Jun 2024 10:04:07 -0400 Subject: [PATCH] chore: Always create ARTIFACTS dir in CI, if set This keeps fussy tools happy. --- dev/ci/postsubmits/release-kcc-images | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev/ci/postsubmits/release-kcc-images b/dev/ci/postsubmits/release-kcc-images index daa2997e28..0eaf3760de 100755 --- a/dev/ci/postsubmits/release-kcc-images +++ b/dev/ci/postsubmits/release-kcc-images @@ -22,4 +22,9 @@ cd ${REPO_ROOT} ${REPO_ROOT}/dev/tasks/install-tools +# Ensure the artifacts directory is always created if set (keeps CI tools happy) +if [[ -n "${ARTIFACTS:-}" ]]; then + mkdir -p "${ARTIFACTS}" +fi + ${REPO_ROOT}/dev/tasks/build-images