We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b43e24 commit 0709ab2Copy full SHA for 0709ab2
Makefile
@@ -35,12 +35,12 @@ clean: ## clean target directories
35
36
.PHONY: push-docker-image
37
push-docker-image: ## push the docker image to the registry (DOCKER_USER and DOCKER_PASS mandatory)
38
- docker login -u $(DOCKER_USER) -p $(DOCKER_PASS) &&\
+ @docker login -u $(DOCKER_USER) -p $(DOCKER_PASS) &&\
39
docker push codacy/git-version:${VERSION}
40
41
.PHONY: push-latest-docker-image
42
push-latest-docker-image: ## push the docker image with the "latest" tag to the registry (DOCKER_USER and DOCKER_PASS mandatory)
43
44
docker tag codacy/git-version:${VERSION} codacy/git-version:latest &&\
45
docker push codacy/git-version:latest
46
0 commit comments