From 6154e8c2e005b472025a31059b72b8b0ce1fa70b Mon Sep 17 00:00:00 2001 From: devthejo Date: Wed, 31 Aug 2022 22:50:59 +0200 Subject: [PATCH] chore: clean --- Makefile | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 3cc0649..0000000 --- a/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -REPO = clusterise/rollout-status -TAG = 1.2 - -all: build publish - -.PHONY: build -build: Dockerfile preflight - docker build -t $(REPO):$(TAG) . - -.PHONY: publish -publish: build - docker push $(REPO):$(TAG) - -.PHONY: preflight -preflight: - go mod vendor - go fmt github.com/socialgouv/rollout-status/... - -.PHONY: test -test: - go test github.com/socialgouv/rollout-status/... - -.PHONY: cleanup -cleanup: - rm -rf vendor