From cfa76c2953a499a8578d927ffd790b42e951e879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C5=A0alata?= Date: Fri, 2 Apr 2021 22:57:47 +0200 Subject: [PATCH] Make make target naming matching --- .github/workflows/release-docker.yaml | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-docker.yaml b/.github/workflows/release-docker.yaml index 2f4b10f..31b7132 100644 --- a/.github/workflows/release-docker.yaml +++ b/.github/workflows/release-docker.yaml @@ -24,5 +24,5 @@ jobs: git config user.name "$GITHUB_ACTOR" git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - - name: make build-images - run: make build-images \ No newline at end of file + - name: make build-image + run: make build-image \ No newline at end of file diff --git a/Makefile b/Makefile index e5dfe74..adea93a 100644 --- a/Makefile +++ b/Makefile @@ -80,7 +80,7 @@ build-linux: image: build-image push-image -build-image: build-linux +build-image: @echo "Building the docker image: $(IMAGE_REPO)/$(IMAGE_NAME):$(IMAGE_TAG)..." @docker build -t $(IMAGE_REPO)/$(IMAGE_NAME):$(IMAGE_TAG) -f build/Dockerfile . @echo "Building the docker image: $(IMAGE_REPO)/$(GENERATOR_IMAGE_NAME):$(IMAGE_TAG)..."