File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,12 @@ clean: ## clean target directories
35
35
36
36
.PHONY : push-docker-image
37
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 ) && \
38
+ @ docker login -u $(DOCKER_USER ) -p $(DOCKER_PASS ) && \
39
39
docker push codacy/git-version:${VERSION}
40
40
41
41
.PHONY : push-latest-docker-image
42
42
push-latest-docker-image : # # push the docker image with the "latest" tag to the registry (DOCKER_USER and DOCKER_PASS mandatory)
43
- docker login -u $(DOCKER_USER ) -p $(DOCKER_PASS ) && \
43
+ @ docker login -u $(DOCKER_USER ) -p $(DOCKER_PASS ) && \
44
44
docker tag codacy/git-version:${VERSION} codacy/git-version:latest && \
45
45
docker push codacy/git-version:latest
46
46
You can’t perform that action at this time.
0 commit comments