From 2eaf912a25bbb065f07b83c7b2498c93a213422e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Baranowski?= Date: Tue, 8 Oct 2024 00:40:13 +0200 Subject: [PATCH] build: Fix how S3 URL is constructed (#2710) --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index a3a1d44c3..921285031 100644 --- a/justfile +++ b/justfile @@ -11,7 +11,7 @@ git_operator_version := env("GIT_OPERATOR_VERSION", "latest") s3_path := "dkp" / git_tag s3_bucket := "downloads.mesosphere.io" -s3_uri := "s3://" / s3_bucket / s3_path +s3_uri := "s3://" + s3_bucket / s3_path s3_acl := "bucket-owner-full-control" archive_name := "kommander-applications-" + git_tag+ ".tar.gz" published_url := "https://downloads.d2iq.com" / s3_path / archive_name