File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
testcases/ground-to-cloud Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,12 @@ sed -i '/^UIPATH_TENANT_ID=[[:space:]]*$/d' .env
2323
2424# Generate dynamic values
2525PR_NUMBER=${GITHUB_PR_NUMBER:- " local" }
26- RUN_ID= ${GITHUB_RUN_ID :- $(date + % s)}
27- UNIQUE_ID=$( python -c " import uuid; print(str(uuid.uuid4())) " 2> /dev/null || python3 -c " import uuid; print(str(uuid.uuid4())) " )
26+ # UNIQUE_ID=$(python -c "import uuid; print(str(uuid.uuid4()))" 2>/dev/null || python3 -c "import uuid; print(str(uuid.uuid4()))")
27+ UNIQUE_ID=$( cat /proc/sys/kernel/random/ uuid)
2828MCP_SERVER_NAME=" mathmcp-${PR_NUMBER} "
2929
3030echo " Updating uipath.json with dynamic values..."
3131echo " PR Number: $PR_NUMBER "
32- echo " Run ID: $RUN_ID "
3332echo " MCP Server Name: $MCP_SERVER_NAME "
3433echo " Unique ID: $UNIQUE_ID "
3534
You can’t perform that action at this time.
0 commit comments