You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The $( version ) template helper provides access to the version. When using it for a YAML value on its own, it renders the version as expected without quotes. However, when interpolating it into a more complex string value, then the result contains unexpected quotes around the version.
Reproduction steps
Template metadata with a complex value construction
something: hello-$( version )
Bake the tile by providing a version, say --version 1.2.3
Assert that the result has quotes inside
something: hello-"1.2.3"
Expected behavior
Template metadata with a complex value construction
something: hello-$( version )
Bake the tile by providing a version, say --version 1.2.3
Assert that the result has no quotes inside
something: hello-1.2.3
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
The
$( version )
template helper provides access to the version. When using it for a YAML value on its own, it renders the version as expected without quotes. However, when interpolating it into a more complex string value, then the result contains unexpected quotes around the version.Reproduction steps
--version 1.2.3
Expected behavior
--version 1.2.3
Additional context
No response
The text was updated successfully, but these errors were encountered: