I have a .txt file called "service-config" that looks like the below:
ServiceName=my-service
ServiceVersion=2.0.4
ToolsAccountNumber=3219684321
SharedAccountNumber=6843219687
NumberOfEcsTasks=2
I need a way to automatically increment the service version by 0.0.1 so when I run this solution the version will go to 2.0.5.
What would be the best way to achieve this?
Thanks.