Skip to content

Commit

Permalink
fix release flow bug - output should be an array
Browse files Browse the repository at this point in the history
  • Loading branch information
edaniszewski committed May 14, 2018
1 parent b937f40 commit bc48e1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/ci/build_and_publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ IMAGE_TAGS="${tags[@]}" make docker
# image labels.
#

images=$(docker images \
images=($(docker images \
--filter "label=org.label-schema.vcs-ref=`git rev-parse --short HEAD 2> /dev/null || true`" \
--filter "label=org.label-schema.name=vaporio/synse-server" \
--filter "dangling=false" \
--format "{{.Repository}}:{{.Tag}}")
--format "{{.Repository}}:{{.Tag}}"))

echo "images to push: ${images}"

Expand Down

0 comments on commit bc48e1d

Please sign in to comment.