Skip to content

Commit

Permalink
Add missing defaults in dev-docker pipeline (#1907)
Browse files Browse the repository at this point in the history
  • Loading branch information
gbanasiak authored Jan 27, 2025
1 parent 665cf13 commit 34f8cf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .buildkite/dev-docker/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ source .buildkite/retry.sh
set +x

BUILD_FROM_BRANCH="$(buildkite-agent meta-data get BUILD_FROM_BRANCH --default ${BUILDKITE_BRANCH})"
PUSH_LATEST="$(buildkite-agent meta-data get PUSH_LATEST)"
PUSH_LATEST="$(buildkite-agent meta-data get PUSH_LATEST --default true)"
# SCHEDULED_PUBLIC_REPO is set by the "Daily Public" schedule in catalog-info.yaml
PUBLIC_DOCKER_REPO="${SCHEDULED_PUBLIC_REPO:-$(buildkite-agent meta-data get PUBLIC_DOCKER_REPO)}"
PUBLIC_DOCKER_REPO="${SCHEDULED_PUBLIC_REPO:-$(buildkite-agent meta-data get PUBLIC_DOCKER_REPO --default false)}"

if [[ $# -lt 1 ]]; then
echo "Usage: $0 (build|manifest) ..."
Expand Down

0 comments on commit 34f8cf7

Please sign in to comment.