Developed a small process using Test Automation with the name - RPA_DEV_ProcessA
Published into dev orchestrator.
Now i wanted to rename from RPA_DEV_ProcessA to RPA_PROD_ProcessA.
Changed the same in Project.jason file
Deleted the current package (RPA_DEV_ProcessA) from orchestrator
Tried to publish with the new name (RPA_PROD_ProcessA)
Getting error as - Error: Publish of Tests project to orchestrator failed. One or more entry point of Uniqueid’s already used in another project RPA_UAT_ProcessA
you’re seeing the error because the “UniqueId” in “project.json” is still the same as a previous project.
Use this will resolve your issue, open project.json and replace the uniqueId value with a new GUID.
You can generate a new GUID using Guid.NewGuid.ToString in UiPath or online.
Save the file and publish again — it will now work without conflict.