14 Mar 2024 09:52 AM
I had an issue with app versioning - if I am setting the version like "1.0.0-beta10" it is considered to be before "1.0.0-beta9" and I can't complete the deployment process. Can you check this?
Solved! Go to Solution.
14 Mar 2024 03:18 PM - edited 19 Mar 2024 09:24 AM
Hi @veranika_k,
Thanks for your question. I was able to reproduce your error, and the issue here is that semver interprets "1.0.0-beta10" as a lower version than "1.0.0-beta9". One way to fix the issue is to switch the versions to "1.0.0-beta.9" and "1.0.0-beta.10".
Best,
Sarah