Skip to content

Commit 2391b39

Browse files
committed
Test GChat eclipse distro message corrections
1 parent b49ba6d commit 2391b39

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test-eclipse-distro-gchat-notification.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: |
4040
echo "P2 Update Site: ${DOWNLOAD_URL_ROOT}/${{ inputs.p2_path }}"
4141
downloads_md="sts4-distro-downloads-${{ inputs.eclipse_profile }}.txt"
42-
rm -f ./${downloads_html}
42+
rm -f ./$downloads_md
4343
s3_url=s3://${AWS_S3_BUCKET}/${{ inputs.dist_path }}
4444
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`
4545
s3_url_prefix="s3://${AWS_S3_BUCKET}"
@@ -49,9 +49,9 @@ jobs:
4949
if [[ "$file" =~ ^"${s3_url_prefix}" ]]; then
5050
download_url=${DOWNLOAD_URL_ROOT}${file:$s3_url_prefix_length}
5151
filename=${file:${#s3_url}+1}
52-
echo '<a href="${download_url}">${filename}</a>' >> $downloads_html
52+
echo '<a href="${download_url}">${filename}</a>' >> $$downloads_md
5353
fi
5454
done
55-
cat ./$downloads_html
56-
rm -f ./${downloads_html}
55+
cat ./$$downloads_md
56+
rm -f ./$downloads_md
5757

0 commit comments

Comments
 (0)