[CI] fix unbound variable issue (#188454)

## Summary
Last fix on #188027
This commit is contained in:
Alex Szabo 2024-07-16 18:11:11 +02:00 committed by GitHub
parent 4043c7d55a
commit 9d43b39f47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -62,7 +62,7 @@ if [[ "$BUILDKITE_BRANCH" == "$KIBANA_BASE_BRANCH" ]] || [[ "${DRY_RUN:-}" =~ ^(
download_artifact beats_manifest.json /tmp --build "${KIBANA_BUILD_ID:-$BUILDKITE_BUILD_ID}"
export BEATS_MANIFEST_URL=$(jq -r .manifest_url /tmp/beats_manifest.json)
if [[ "$DRY_RUN" =~ ^(1|true)$ ]]; then
if [[ "${DRY_RUN:-}" =~ ^(1|true)$ ]]; then
docker run --rm \
--name release-manager \
-e VAULT_ADDR \