From 2fa7c0d7f726765a61f9baf6e63494e4e5c95f4f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Oct 2022 12:17:24 +0200 Subject: [PATCH] Backport PR #14703 to 7.17: Adds upload of missed docker docker-build-context.tar.gz artifacts #14704 Updates the dra_docker.sh script to upload also docker-build-context.tar.gz files (cherry picked from commit 6ad5690a8c6a5941b874dfd931578b18d9faa9f7) Co-authored-by: Andrea Selva --- ci/dra_docker.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/dra_docker.sh b/ci/dra_docker.sh index 42f1cf150..c7483cea7 100755 --- a/ci/dra_docker.sh +++ b/ci/dra_docker.sh @@ -58,6 +58,7 @@ info "UPLOADING TO INTERMEDIATE BUCKET" # Note the deb, rpm tar.gz AARCH64 files generated has already been loaded by the dra_x86_64.sh for image in logstash logstash-oss logstash-ubi8; do upload_to_bucket "build/$image-${STACK_VERSION}-docker-image-${ARCH}.tar.gz" ${STACK_VERSION} + upload_to_bucket "build/$image-${STACK_VERSION}-docker-build-context.tar.gz" ${STACK_VERSION} done echo "####################################################################"