Jenkins and plugins versions report
Environment
What Operating System are you using (both controller, and any agents involved in the problem)?
windows10, no agent involved
Reproduction steps
stage ('Pack') {
steps {
UiPathPack (
outputPath: "Output\\${env.BUILD_NUMBER}",
projectJsonPath: "project.json",
version: [$class: 'ManualVersionEntry', version: "${MAJOR}.${MINOR}.${env.BUILD_NUMBER}"],
useOrchestrator: true,
traceLevel: "None",
orchestratorAddress: "xxxx/DefaultTenant",
orchestratorTenant: "DefaultTenant",
credentials: [$class: 'UserPassAuthenticationEntry', credentialsId: 'ocadmin']
)
}
}
Expected Results
the output package can run on uipath cloud
Actual Results
failed when running on uipath cloud
Anything else?
I guess the reason could be the missing lib directory in the output package. I built with uipath studio cli, the output package has lib directory(sub directory something like net6.0-windows7.0 containing dll files)