Skip to content

Commit

Permalink
Merge pull request #344 from buildkite/fix-docker-tag-flag-from-array
Browse files Browse the repository at this point in the history
Fix --tag flags generated from Bash array
  • Loading branch information
DrJosh9000 authored Dec 5, 2024
2 parents 371682b + b670894 commit c1066cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .buildkite/steps/release-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ release_dry_run docker buildx build \
--progress plain \
--builder "${builder_name}" \
--tag "${registry}:latest" \
"${version_tags[@]/#/--tag ${registry}:v}" \
"${version_tags[@]/#/--tag=${registry}:v}" \
--platform linux/amd64,linux/arm64 \
--file .buildkite/Dockerfile.public \
--push \
Expand Down

0 comments on commit c1066cb

Please sign in to comment.