fix error in workflow (#273)

This commit is contained in:
classabbyamp
2020-10-06 19:31:19 -04:00
committed by GitHub
parent 8cb1a8df15
commit de999bc39d
+1 -1
View File
@@ -52,7 +52,7 @@ jobs:
# tag dev or x.x.x
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
# tag latest if not a dev release
[[ "$VERSION" != "dev" ]] && docker tag $IMAGE_NAME $IMAGE_ID:latest
[[ "$VERSION" != "dev" ]] && docker tag $IMAGE_NAME $IMAGE_ID:latest || true
- name: Push images to registry
run: docker push ${{ steps.tag_image.outputs.image_id }}