diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2022-06-04 21:32:59 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2022-06-04 21:32:59 -0400 |
commit | a2a3f0ca4de166f7358e99420f11898c0c3bd534 (patch) | |
tree | 345324bb0fd431c67e184209fc89357b0a8c15d3 /bin | |
parent | ef8ce4259857acc04639b53ef18d952b0747d5b1 (diff) |
remove bin/image-push
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/image-push | 15 |
1 files changed, 0 insertions, 15 deletions
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 <s@ricketyspace.net> - -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" |