From 6f0627ea48adcbb66c6a5ea78d114dd507830c9e Mon Sep 17 00:00:00 2001 From: jelle Spijker Date: Mon, 12 Sep 2022 08:58:46 +0200 Subject: [PATCH] Fix versioning scheme name used by embedded team --- .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 b2c690342a..215f160bf5 100644 --- a/.github/workflows/conan-recipe-version.yml +++ b/.github/workflows/conan-recipe-version.yml @@ -122,6 +122,8 @@ jobs: latest_branch_version = tools.Version("0.0.0") latest_branch_tag = None for tag in repo.git.tag(merged = True).splitlines(): + if str(tag).startswith("firmware") of str(tag).startswith("master"): + continue # Quick-fix for the versioning scheme name of the embedded team in fdm_materials(_private) repo try: version = tools.Version(tag) except ConanException: