Skip to content

Commit d648c62

Browse files
author
potsrevennil
authored
fix: endpoint installer version filter
1 parent 3bcf5ba commit d648c62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: |
3737
app_releases=$(aws s3api list-objects --bucket aorta-chelpis --prefix build/aorta-app-installer/aorta-app-installer-${{github.event.inputs.app-version}} | jq -cer '[.Contents[].Key]' | tr '"' '\"')
3838
echo "APP Releases: $app_releases"
39-
endpoint_releases=$(aws s3api list-objects --bucket aorta-chelpis --prefix build/aorta-endpoint-installer/aorta-endpoint-${{github.event.inputs.endpoint-version}} | jq -cer '[.Contents[].Key]' | tr '"' '\"')
39+
endpoint_releases=$(aws s3api list-objects --bucket aorta-chelpis --prefix build/aorta-endpoint-installer/aorta-endpoint-v${{github.event.inputs.endpoint-version}} | jq -cer '[.Contents[].Key]' | tr '"' '\"')
4040
echo "Endpoint Releases: $endpoint_releases"
4141
releases=$(jq -cer --argjson arr1 "$app_releases" --argjson arr2 "$endpoint_releases" -n '$arr1 + $arr2')
4242
echo "::set-output name=releases::$releases"

0 commit comments

Comments
 (0)