Skip to content

Commit ced4775

Browse files
committed
[GHA] Corrections to workflows
1 parent 1633d8e commit ced4775

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/gh-hosted-eclipse-distro-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ jobs:
349349
downloads_html="sts4-distro-downloads-${{ inputs.eclipse_profile }}.txt"
350350
rm -f ./downloads_html
351351
s3_url=s3://${AWS_S3_BUCKET}/${{ needs.eclipse-distro-build.outputs.dist_path }}
352-
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 --checksum-algorithm CRC32`
352+
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`
353353
s3_url_prefix="s3://${AWS_S3_BUCKET}"
354354
s3_url_prefix_length=${#s3_url_prefix}
355355
for file in $files

.github/workflows/wipe-out-temp-build-artifacts.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ name: Wipe out temp build artifacts
33
# configure manual trigger
44
on:
55
workflow_dispatch:
6-
#on:
7-
# push:
8-
# branches:
9-
# - 'main'
106

117
env:
128
AWS_ACCESS_KEY_ID: ${{ secrets.CDN_S3_ACCESS_KEY }}
@@ -22,5 +18,6 @@ jobs:
2218
- name: Remove Temp Build Artifacts from S3
2319
id: cleanup-s3-temp-storage
2420
run: |
25-
aws s3 rm s3://${AWS_S#_BUCKET}/sts4-distro-ci-temp --recursive --exclude "*" --include "*.zip"
21+
aws s3 rm s3://${AWS_S3_BUCKET}/sts4-distro-ci-temp --recursive --exclude "*" --include "*.zip"
22+
aws s3 rm s3://${AWS_S3_BUCKET}/exes-signed --recursive --exclude "*" --include "*.exe"
2623

0 commit comments

Comments
 (0)