Our teams do weekly releases, so I have created an automation script to create a new release every Monday morning.
I'm attempting to use smart values to generate the names of the releases based on the date and week, but the smart values fail to generate anything in the version name field.
Project-{{now.date.year}}-{{now.weekOfYear}}, for example, results in a release called "Project--10" instead of Project-2025-10.
What am I doing wrong here?
Oh, I've fixed it. I was calling the date incorrectly. This works:
Project-{{now.Year}}-{{now.weekOfYear}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.