mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-22 22:23:57 -06:00
Fix conditional in recipe versioning to use proper syntax
This commit is contained in:
parent
2dbb9ac32f
commit
e073adfa9e
1 changed files with 1 additions and 1 deletions
2
.github/workflows/conan-recipe-version.yml
vendored
2
.github/workflows/conan-recipe-version.yml
vendored
|
@ -135,7 +135,7 @@ jobs:
|
|||
user = "_"
|
||||
channel = "_"
|
||||
else:
|
||||
if not latest_branch_version.prerelease.contains("."):
|
||||
if not "." in latest_branch_version.prerelease:
|
||||
# The prerealese did not contain a version number, default it to 1
|
||||
latest_branch_version.prerelease.append(".1")
|
||||
if event_name == "pull_request":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue