Skip to content

Commit b91f329

Browse files
committed
[GHA] Fix aggregate update site distro workflow fixes
1 parent 205b97b commit b91f329

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/aggregate-distro-update-sites.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ on:
1111
description: Latest eclipse release version (i.e. e4.28)
1212
required: true
1313
type: string
14+
workflow_dispatch:
15+
inputs:
16+
version:
17+
description: Version suffix in S3 (i.e. 4.19.1.RELEASE)
18+
required: true
19+
type: string
20+
latest:
21+
description: Latest eclipse release version (i.e. e4.28)
22+
required: true
23+
type: string
1424

1525
env:
1626
AWS_ACCESS_KEY_ID: ${{ secrets.CDN_S3_ACCESS_KEY }}
@@ -51,7 +61,7 @@ jobs:
5161
echo "Found ${dir}"
5262
dir_name=${dir:0:-1}
5363
site_url="${DOWNLOAD_URL_ROOT}/release/TOOLS/sts4/update/${{ inputs.version }}/${dir_name}"
54-
if [[ ${dir_name} == "e4.30" ]] || ; then
64+
if [[ ${dir_name} == "e4.30" ]]; then
5565
${{ github.workspace }}/.github/scripts/generate-composite-site-files.sh ${{ steps.timestamp.outputs.date }} $site_url
5666
else
5767
${{ github.workspace }}/.github/scripts/generate-composite-site-files.sh ${{ steps.timestamp.outputs.date }} $site_url true

0 commit comments

Comments
 (0)