From 8bfa9ed8dc02cfa6d5fb0bf38bdc1136bbdf87f5 Mon Sep 17 00:00:00 2001 From: Raphanus Lo Date: Mon, 17 Feb 2025 19:43:38 +0800 Subject: [PATCH] fix(ci): fixed project name Signed-off-by: Raphanus Lo --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d8e79fcef2..57eed15d29 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,4 @@ +PROJECT := longhorn-manager TARGETS := $(shell ls scripts) MACHINE := longhorn # Define the target platforms that can be used across the ecosystem. @@ -27,9 +28,9 @@ buildx-machine: # - IID_FILE_FLAG: optional, options to generate image ID file .PHONY: workflow-image-build-push workflow-image-build-push-secure workflow-image-build-push: buildx-machine - MACHINE=$(MACHINE) PUSH='true' bash scripts/package + MACHINE=$(MACHINE) PUSH='true' IMAGE_NAME=$(PROJECT) bash scripts/package workflow-image-build-push-secure: buildx-machine - MACHINE=$(MACHINE) PUSH='true' IS_SECURE=true bash scripts/package + MACHINE=$(MACHINE) PUSH='true' IMAGE_NAME=$(PROJECT) IS_SECURE=true bash scripts/package generate: bash k8s/generate_code.sh