Publish Orchestator Azure Devops YAML

support

Hello

Problems when deploying to the Orchestrator

C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command “. ‘C:\agent_work_temp\df42aec1-8289-4004-9981-66507327152f.ps1’”

Import-Module : The specified module ‘UiPath.Powershell’ was not loaded because no valid module file was found in any
module directory.
At C:\agent_work_temp\df42aec1-8289-4004-9981-66507327152f.ps1:3 char:1

  • Import-Module UiPath.Powershell
  •   + CategoryInfo          : ResourceUnavailable: (UiPath.Powershell:String) [Import-Module], FileNotFoundException
      + FullyQualifiedErrorId : Modules_ModuleNotFound,Microsoft.PowerShell.Commands.ImportModuleCommand
    
    

##[error]PowerShell exited with code ‘1’.
Finishing: PowerShell

File yaml

trigger:

  • master
    variables:
  • group: UiPath
  • name: agent.preferPowerShellOnContainers
    value: “True”

stages:

  • stage: Build
    displayName: Create build artifact
    jobs:

    • job: BuildArtifact
      pool: AgentRPAbot
      steps:
      • script: C:"Program Files (x86)"\UiPath\Studio\UiRobot.exe pack $(Build.SourcesDirectory)\project.json -o $(Build.ArtifactStagingDirectory)\ -v 1.0.$(Build.BuildNumber)
        displayName: “Build the artifact”
      • publish: $(Build.ArtifactStagingDirectory)
        artifact: drop
  • stage: DeployUat
    displayName: Deploy build artifact to UAT
    dependsOn: Build
    condition: succeeded()
    jobs:

    • deployment: deployUat
      displayName: Deploy package to UAT Orchestrator
      pool: AgentRPAbot
      environment: UAT
      strategy:
      runOnce:
      deploy:
      steps:
      - download: current
      artifact: drop
      displayName: Download build artifact on build agent
      - powershell: |
      Import-Module UiPath.Powershell
      $token = Get-UiPathAuthToken -ClientId $(UATClientId) -UserKey $(UATUserKey) -AccountName $(UATAccountLogicalName) -CloudDeployment ‘Production’ -TenantName $(UATTenantLogicalName)
      Add-UiPathPackage -PackageFile $(Pipeline.Workspace)\drop\UiPathAzureDevOps.1.0.$(Build.BuildNumber).nupkg -AuthToken $token

Please, help me

Hello @Javier_Enrique!

It seems that you have trouble getting an answer to your question in the first 24 hours.
Let us give you a few hints and helpful links.

First, make sure you browsed through our Forum FAQ Beginner’s Guide. It will teach you what should be included in your topic.

You can check out some of our resources directly, see below:

  1. Always search first. It is the best way to quickly find your answer. Check out the image icon for that.
    Clicking the options button will let you set more specific topic search filters, i.e. only the ones with a solution.

  2. Topic that contains most common solutions with example project files can be found here.

  3. Read our official documentation where you can find a lot of information and instructions about each of our products:

  4. Watch the videos on our official YouTube channel for more visual tutorials.

  5. Meet us and our users on our Community Slack and ask your question there.

Hopefully this will let you easily find the solution/information you need. Once you have it, we would be happy if you could share your findings here and mark it as a solution. This will help other users find it in the future.

Thank you for helping us build our UiPath Community!

Cheers from your friendly
Forum_Staff