push command needs one arg

Change https://review.opendev.org/c/airship/image-builder/+/812396 was merged but the push command,
which is only triggered after merge, requires only one arg/tag. I provided two. This fixes that. 

Change-Id: Id8f1a562c53e36a6bed730c63f9106b6f0061bc0
This commit is contained in:
Walter Wahlstedt 2021-11-02 21:45:40 -04:00 committed by Walter S Wahlstedt
parent da905e0e5d
commit f891455e19
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ tag:
push:
set -ex
sudo -E DOCKER_BUILDKIT=1 docker push $(SOURCE_IMAGE_TAG) $(TARGET_IMAGE_TAG)
sudo -E DOCKER_BUILDKIT=1 docker push $(SOURCE_IMAGE_TAG)
tests:
true