Skip to content

Commit a13c5ed

Browse files
authored
fix: Docker Hub pushes should use a proper push command (#81)
* fix: Properly push the tagged images to the registry * fix: Whitespace
1 parent 1393079 commit a13c5ed

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@ deps:
5454
docker-build: docker-runner docker-probe
5555

5656
docker-push:
57-
@docker push nethax-runner:$(RUNNER_VERSION) nethax-runner:latest nethax-probe:$(PROBE_VERSION) nethax-probe:latest
57+
@docker push nethax-runner:$(RUNNER_VERSION)
58+
@docker push nethax-runner:latest
59+
@docker push nethax-probe:$(PROBE_VERSION)
60+
@docker push nethax-probe:latest
5861

5962
docker-runner:
6063
@docker build -f Dockerfile-runner --build-arg PROBE_VERSION=$(PROBE_VERSION) -t nethax-runner:$(RUNNER_VERSION) -t nethax-runner:latest .
@@ -63,7 +66,7 @@ ifndef CI
6366
endif
6467

6568
docker-probe:
66-
@docker build -f Dockerfile-probe --build-arg PROBE_VERSION=$(PROBE_VERSION) -t nethax-probe:$(PROBE_VERSION) -t nethax-probe:latest .
69+
@docker build -f Dockerfile-probe --build-arg PROBE_VERSION=$(PROBE_VERSION) -t nethax-probe:$(PROBE_VERSION) -t nethax-probe:latest .
6770
ifndef CI
6871
@kind load docker-image --name $(KIND_CLUSTER_NAME) nethax-probe:$(PROBE_VERSION) || true
6972
endif

0 commit comments

Comments
 (0)