From 04a46ebe89301956e56651f709ee6c752ee1fc86 Mon Sep 17 00:00:00 2001 From: croche Date: Thu, 25 Apr 2024 14:26:25 +0100 Subject: [PATCH] OCM-7256 | chore: fix release action to correct target --- .github/workflows/publish-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 10bc9e7..eba2253 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -58,14 +58,14 @@ jobs: env["GOARCH"] = goarch # Build the binary: - args = ["make", "cmds"] + args = ["make", "build"] subprocess.run(check=True, env=env, args=args) # Copy the generated binary to the assets directory: - binary = "ocm-support" + binary = "rosa-support" if goos == "windows": binary += ".exe" - asset = os.path.join(assets, f"ocm-support-{goos}-{goarch}") + asset = os.path.join(assets, f"rosa-support-{goos}-{goarch}") os.rename(binary, asset) # Build for the supported operating systems and architectures: