Skip to content

Commit

Permalink
Fix push script to include new images (#1912)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnugeorge authored Jun 30, 2022
1 parent 73177dc commit 8dcc7d3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/v1beta1/push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,11 @@ docker push "${REGISTRY}/enas-cnn-cifar10-gpu:${TAG}"
echo -e "\nPushing Keras CIFAR-10 CNN training container example for ENAS with CPU support...\n"
docker push "${REGISTRY}/enas-cnn-cifar10-cpu:${TAG}"

echo -e "\nPushing PyTorch CIFAR-10 CNN training container example for DARTS...\n"
docker push "${REGISTRY}/darts-cnn-cifar10:${TAG}"
echo -e "\nPushing PyTorch CIFAR-10 CNN training container example for DARTS with CPU support...\n"
docker push "${REGISTRY}/darts-cnn-cifar10-cpu:${TAG}"

echo -e "\nPushing PyTorch CIFAR-10 CNN training container example for DARTS with GPU support...\n"
docker push "${REGISTRY}/darts-cnn-cifar10-gpu:${TAG}"

echo -e "\nPushing dynamic learning rate training container example for PBT...\n"
docker push "${REGISTRY}/simple-pbt:${TAG}"
Expand Down

0 comments on commit 8dcc7d3

Please sign in to comment.