From 792a8fbd31f6d5c35796b5186253643dcd40b4c1 Mon Sep 17 00:00:00 2001 From: Tarun Gupta Akirala Date: Tue, 15 Oct 2024 14:33:13 -0700 Subject: [PATCH] ci: use explicit name when publishing s3 blobs (#2740) --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index bd78e4921d..68651f067b 100644 --- a/justfile +++ b/justfile @@ -21,7 +21,7 @@ release publish="true" tmp_dir=`mktemp --directory`: (_prepare-archive tmp_dir) #!/usr/bin/env bash set -euox pipefail if {{ publish }}; then - aws s3 cp --acl {{ s3_acl }} {{ archive_name }} {{ s3_uri }} + aws s3 cp --acl {{ s3_acl }} {{ archive_name }} {{ s3_uri }}/{{ archive_name }} echo "Published to {{ published_url }}" else echo "Skipping publish"