From 4a8f54ae538fbda710e65ee88c5acdef2506cb7d Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Fri, 3 Oct 2025 09:29:47 +0200 Subject: [PATCH] ci(gha): Fix path Signed-off-by: Peter Mikus Change-Id: I49b851385af45f0d3e75d138a6c79da978a07d25 --- .github/actions/aws_s3_publish_logs/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/aws_s3_publish_logs/action.yml b/.github/actions/aws_s3_publish_logs/action.yml index 4e02c15a67..e16810da6d 100644 --- a/.github/actions/aws_s3_publish_logs/action.yml +++ b/.github/actions/aws_s3_publish_logs/action.yml @@ -109,7 +109,7 @@ runs: content_type=$(get_content_type "${file}") - S3_ARN="${{ inputs.S3_BUCKET }}/${{ inputs.S3_PATH }}/${rel_path}.gz" + S3_ARN="s3://${{ inputs.S3_BUCKET }}/${{ inputs.S3_PATH }}/${rel_path}.gz" echo "Uploading ${rel_path}.gz -> ${S3_ARN} (Content-Type: ${content_type}, gzip)" aws s3 cp "${tmp_file}" "${S3_ARN}" --content-type "${content_type}" --content-encoding "gzip" -- 2.16.6