From 3387e9c0dfe6c7143537d82edcfac64d4f395911 Mon Sep 17 00:00:00 2001 From: aboyko Date: Fri, 14 Jul 2023 15:12:04 -0400 Subject: [PATCH] GHA: S3 cp command fix --- .github/workflows/gh-hosted-eclipse-distro-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-hosted-eclipse-distro-build.yml b/.github/workflows/gh-hosted-eclipse-distro-build.yml index 533f301d6..d712d8cb1 100644 --- a/.github/workflows/gh-hosted-eclipse-distro-build.yml +++ b/.github/workflows/gh-hosted-eclipse-distro-build.yml @@ -135,11 +135,11 @@ jobs: echo "Processing S3 update..." ls spring-tool-suite-4*win*.zip* - ls spring-tool-suite-4*win*.jar* + ls spring-tool-suite-4*win*.self-extracting.jar* echo "Removing old win zip and self extracting jar files from s3..." aws s3 rm s3://dist.springsource.com/${dist_path} --recursive --exclude "*" --include "spring-tool-suite-4*win*.zip*" --include "spring-tool-suite-4*win*.self-extracting.jar*" echo "Uploading new win zip and self extracting jar files to s3..." - aws s3 cp s3://dist.springsource.com/${dist_path} . --recursive --exclude "*" --include "spring-tool-suite-4*win*.zip*" --include "spring-tool-suite-4*win*.self-extracting.jar*" --acl public-read + aws s3 cp s3://dist.springsource.com/${dist_path} ./ --recursive --exclude "*" --include "spring-tool-suite-4*win*.zip*" --include "spring-tool-suite-4*win*.self-extracting.jar*" --acl public-read # ls spring-tool-suite-4*win*.jar* # echo "Removing old self extractable win jar files from s3..."