Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorj.spijker@ultimaker.com <jelle spijker>2022-07-12 11:58:07 +0300
committerjspijker <j.spijker@ultimaker.com>2022-07-12 11:58:07 +0300
commit4fd744cc95680e714074ed6eba46217b73c59ffc (patch)
treede1c046d73a42719780638a5f07475e8ee288227 /.github
parent43d9174d952b7ba2c73de28f6275da5ae555d372 (diff)
use the first index
Contributes to CURA-9365
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/conan-recipe-version.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/conan-recipe-version.yml b/.github/workflows/conan-recipe-version.yml
index a69b1206e0..4dc7821a5f 100644
--- a/.github/workflows/conan-recipe-version.yml
+++ b/.github/workflows/conan-recipe-version.yml
@@ -85,7 +85,7 @@ jobs:
elif repo.active_branch.name == "main" or repo.active_branch.name == "master":
channel = 'testing'
else:
- channel = repo.active_branch.name.split("_").replace("-", "_").lower()
+ channel = repo.active_branch.name.split("_")[0].replace("-", "_").lower()
if event_name == "pull_request":
channel = f"pr_{issue_number}"