diff --git a/.github/workflows/gh-hosted-eclipse-distro-build.yml b/.github/workflows/gh-hosted-eclipse-distro-build.yml index fc703c8e8..7e64bd8de 100644 --- a/.github/workflows/gh-hosted-eclipse-distro-build.yml +++ b/.github/workflows/gh-hosted-eclipse-distro-build.yml @@ -129,10 +129,19 @@ jobs: run: | dist_path=`cat s3-dist-path.txt` + echo "S3 contents:" + aws s3 ls s3://dist.springsource.com/${dist_path}/ + + echo "Processing S3 update..." + ls spring-tool-suite-4*win*.zip* + echo "Removing old win zip files from s3..." aws s3 rm s3://dist.springsource.com/${dist_path}/ --exclude "*" --include "spring-tool-suite-4*win*.zip*" + echo "Uploading new win zip files to s3..." aws s3 cp s3://dist.springsource.com/${dist_path}/ . --exclude "*" --include "spring-tool-suite-4*win*.zip*" --acl public-read ls spring-tool-suite-4*win*.jar* + echo "Removing old self extractable win jar files from s3..." aws s3 rm s3://dist.springsource.com/${dist_path}/ --exclude "*" --include "spring-tool-suite-4*win*.jar*" + echo "Uploading new self extractable win jar files to s3..." aws s3 cp s3://dist.springsource.com/${dist_path}/ . --exclude "*" --include "spring-tool-suite-4*win*.jar*" --acl public-read