GHA: Debug printing for s3 update step
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user