From 4e55603bde88d9a5f8db0879fbff40c933917e6d Mon Sep 17 00:00:00 2001 From: "j.spijker@ultimaker.com" Date: Tue, 19 Jul 2022 06:50:39 +0200 Subject: [PATCH] Set channel and user to _ for tag Contributes to CURA-9365 --- .github/workflows/conan-recipe-version.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/conan-recipe-version.yml b/.github/workflows/conan-recipe-version.yml index c3c404f391..bc45be48d5 100644 --- a/.github/workflows/conan-recipe-version.yml +++ b/.github/workflows/conan-recipe-version.yml @@ -85,6 +85,8 @@ jobs: if is_tag: branch_version = tools.Version("${{ github.ref_name }}") is_release_branch = True + channel = "_" + user = "_" else: try: branch_version = tools.Version(repo.active_branch.name)