mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
[CI] Fix heredoc typos (#187971)
## Summary I've introduced a typo to the artifact publish script in #184018 - this PR fixes it.
This commit is contained in:
parent
77267b28ba
commit
54ff3bf249
1 changed files with 3 additions and 2 deletions
|
@ -62,7 +62,7 @@ if [[ "$BUILDKITE_BRANCH" == "$KIBANA_BASE_BRANCH" ]]; then
|
|||
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)
|
||||
|
||||
PUBLISH_CMD=$(cat < EOF
|
||||
PUBLISH_CMD=$(cat << EOF
|
||||
docker run --rm \
|
||||
--name release-manager \
|
||||
-e VAULT_ADDR \
|
||||
|
@ -79,7 +79,8 @@ if [[ "$BUILDKITE_BRANCH" == "$KIBANA_BASE_BRANCH" ]]; then
|
|||
--qualifier "$VERSION_QUALIFIER" \
|
||||
--dependency "beats:$BEATS_MANIFEST_URL" \
|
||||
--artifact-set main
|
||||
EOF)
|
||||
EOF
|
||||
)
|
||||
if [[ "${DRY_RUN:-}" =~ ^(1|true)$ ]]; then
|
||||
PUBLISH_CMD+=(" --dry-run")
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue