From 52539e62ced3c56619bc175543da8b31bc370de6 Mon Sep 17 00:00:00 2001 From: aboyko Date: Thu, 20 Jul 2023 17:49:04 -0400 Subject: [PATCH] GHA: corrections to gen html --- .github/workflows/gen-nighly-downloads.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gen-nighly-downloads.yml b/.github/workflows/gen-nighly-downloads.yml index d7e32faff..b72641b16 100644 --- a/.github/workflows/gen-nighly-downloads.yml +++ b/.github/workflows/gen-nighly-downloads.yml @@ -15,12 +15,17 @@ jobs: AWS_DEFAULT_REGION: us-east-1 run: | dist_path="snapshot/STS4/nightly/dist/e4.28" + s3_url=s3://dist.springsource.com/${dist_path} downloads_html="sts4-nightly-e4.28.html" - files=`aws s3 cp s3://dist.springsource.com/${dist_path} . --recursive --exclude "*" --include "spring-tool-suite-4*.zip" --include "spring-tool-suite-4*.dmg" --include "spring-tool-suite-4*.self-extracting.jar" --include "spring-tool-suite-4*.tar.gz" --exclude "*/*" --dryrun` + files=`aws s3 cp ${s3_url} . --recursive --exclude "*" --include "spring-tool-suite-4*.zip" --include "spring-tool-suite-4*.dmg" --include "spring-tool-suite-4*.self-extracting.jar" --include "spring-tool-suite-4*.tar.gz" --exclude "*/*" --dryrun` echo '' >> $downloads_html cat ./$downloads_html