From e5871baeb8bae2086b9faf77e98cc51a5c44603c Mon Sep 17 00:00:00 2001
From: Michael Ilyin <milyin@gmail.com>
Date: Mon, 21 Oct 2024 16:19:41 +0200
Subject: [PATCH] repo name incorrect (#265)

---
 ci/scripts/build.bash | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ci/scripts/build.bash b/ci/scripts/build.bash
index f00ad98f..53a3332d 100644
--- a/ci/scripts/build.bash
+++ b/ci/scripts/build.bash
@@ -8,7 +8,9 @@ readonly repo=${REPO:?input REPO is required}
 readonly version=${VERSION:-''}
 
 readonly out=$GITHUB_WORKSPACE
-readonly repo_name=${repo#*/}
+# readonly repo_name=${repo#*/}
+# temporary fix - make manual
+readonly repo_name=zenohcpp
 readonly archive_lib=$out/$repo_name-$version.zip
 readonly archive_deb=$out/$repo_name-$version-deb-pkgs.zip
 readonly archive_rpm=$out/$repo_name-$version-rpm-pkgs.zip