Hello! I am looking for a way to automate version release on the 1st day of each month.
I have a rule set up to automatically create a new version with the name of the following month and year when I release the previous version. I would like to add a release date to this rule, ie, release on 1st of following month, so I don’t have to manually release it each time.
For example, release version September 2024 on 1st Oct 2024.
Appreciate your assistance.
Hi @Vini Vincent and welcome to the Community!
I would suspect the following to work, looking at your requirement description:
{{now.endOfMonth.plusDays(1)}}
Or, if you want to make sure your release date is on a working day:
{{now.endOfMonth.plusBusinessDays(1)}}
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.