fix error in workflow

This commit is contained in:
Abigail G 2020-10-06 19:26:18 -04:00
parent 8cb1a8df15
commit 03a0c7d879
No known key found for this signature in database
GPG Key ID: CF88335E873C3FB4
1 changed files with 1 additions and 1 deletions

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 }}