From a2a3f0ca4de166f7358e99420f11898c0c3bd534 Mon Sep 17 00:00:00 2001 From: siddharth ravikumar Date: Sat, 4 Jun 2022 21:32:59 -0400 Subject: remove bin/image-push --- bin/image-push | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100755 bin/image-push (limited to 'bin') diff --git a/bin/image-push b/bin/image-push deleted file mode 100755 index 5f572d4..0000000 --- a/bin/image-push +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash -# -# SPDX-License-Identifier: ISC -# Copyright © 2022 siddharth ravikumar - -REPO="public.ecr.aws/w3h8c8i8/peach" - -# Find the most recent tag. -TAG=$(docker images "$REPO" --format "{{.Tag}}" | head -n 1) -if [ -z "$TAG" ]; then - echo "No recent tags found" - exit 1 -fi - -docker push "$REPO":"$TAG" -- cgit v1.2.3