From e4d5505c10d0cd49826ad3eaea2818e3034d4fe8 Mon Sep 17 00:00:00 2001 From: Yann Hamon Date: Wed, 31 Mar 2021 21:51:50 +0200 Subject: [PATCH] Migrate to Github Container Registry --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eee34b9..713323a 100644 --- a/Makefile +++ b/Makefile @@ -19,8 +19,8 @@ save-image: docker save --output kubeconform-image.tar kubeconform:${RELEASE_VERSION} push-image: - docker tag kubeconform:latest docker.pkg.github.com/yannh/kubeconform/kubeconform:${RELEASE_VERSION} - docker push docker.pkg.github.com/yannh/kubeconform/kubeconform:${RELEASE_VERSION} + docker tag kubeconform:latest ghcr.io/yannh/kubeconform:${RELEASE_VERSION} + docker push ghcr.io/yannh/kubeconform:${RELEASE_VERSION} build-static: CGO_ENABLED=0 GOFLAGS=-mod=vendor GOOS=linux GOARCH=amd64 GO111MODULE=on go build -trimpath -tags=netgo -ldflags "-extldflags=\"-static\"" -a -o bin/ ./...