From 0ffdf559545fb782439ccb02416002fc87e00cd2 Mon Sep 17 00:00:00 2001 From: aboyko Date: Wed, 8 Nov 2023 21:33:33 -0500 Subject: [PATCH] GHA: Use aws cli to dryrun upload p2 repo --- .github/workflows/eclipse-ls-extensions-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/eclipse-ls-extensions-build.yml b/.github/workflows/eclipse-ls-extensions-build.yml index 422c8878c..3cd7feb9b 100644 --- a/.github/workflows/eclipse-ls-extensions-build.yml +++ b/.github/workflows/eclipse-ls-extensions-build.yml @@ -110,8 +110,8 @@ jobs: run: | dist_path=`cat org.springframework.tooling.ls.integration.repository/target/s3-p2-repo-dist-path.txt` echo "Dist path: ${dist_path}" - aws s3 rm s3://tools-spring-io/${dist_path}/ --recursive - aws s3 mv ./org.springframework.tooling.ls.integration.repository/target/repository/ s3://dist.springsource.com/${dist_path}/ --recursive + aws s3 rm s3://tools-spring-io/${dist_path}/ --recursive --dryrun + aws s3 mv ./org.springframework.tooling.ls.integration.repository/target/repository/ s3://dist.springsource.com/${dist_path}/ --recursive --dryrun - name: Clear S3 Caches if: ${{ inputs.build_type != 'snapshot' }} env: