Skip to content

Commit

Permalink
Update cloudfoundry automation with HTTP 2 support (#7454)
Browse files Browse the repository at this point in the history
  • Loading branch information
smola authored Aug 20, 2024
1 parent 8b4aae5 commit f14fb46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/add-release-to-cloudfoundry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
MAX_TRIES=60 # Wait up to 30 minutes
DELAY=30
while [ $TRY -lt $MAX_TRIES ]; do
if curl -s -I ${{ steps.get-release-url.outputs.URL }} | grep -q "200 OK"; then
if curl -s -I ${{ steps.get-release-url.outputs.URL }} | grep -q "^HTTP/.* 200"; then
break
fi
echo "Waiting for the release to be available..."
Expand Down

0 comments on commit f14fb46

Please sign in to comment.