mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-09-13 21:43:16 +08:00
Set build version to 0 if build version is ''
Contributes to CURA-9365
This commit is contained in:
parent
68a79684fd
commit
fd7c5abdc0
@ -319,7 +319,7 @@ echo "CURA_VERSION_FULL={{ cura_version_full }}" >> ${{ env_prefix }}GITHUB_ENV
|
|||||||
""").render(cura_version_major = cura_version.major,
|
""").render(cura_version_major = cura_version.major,
|
||||||
cura_version_minor = cura_version.minor,
|
cura_version_minor = cura_version.minor,
|
||||||
cura_version_patch = cura_version.patch,
|
cura_version_patch = cura_version.patch,
|
||||||
cura_version_build = cura_version.build,
|
cura_version_build = cura_version.build if cura_version.build != "" else "0",
|
||||||
cura_version_full = self.version,
|
cura_version_full = self.version,
|
||||||
env_prefix = env_prefix)
|
env_prefix = env_prefix)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user