From 5f62ef8b08f0e0ac761a66fb5040c07278e9d620 Mon Sep 17 00:00:00 2001 From: Petr Kotas Date: Thu, 20 Jan 2022 12:24:27 +0100 Subject: [PATCH] Fix: Broken pull path The original path is not working as it is blocked for writing, Using the pipeline default instead Signed-off-by: Petr Kotas --- .pipelines/templates/template-job-deploy-azure-env.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.pipelines/templates/template-job-deploy-azure-env.yml b/.pipelines/templates/template-job-deploy-azure-env.yml index 081da9c3cee..6b60d0fe693 100644 --- a/.pipelines/templates/template-job-deploy-azure-env.yml +++ b/.pipelines/templates/template-job-deploy-azure-env.yml @@ -29,10 +29,8 @@ jobs: steps: - ${{ if eq(parameters.configVersion, 'latest') }}: - checkout: git://AzureRedHatOpenShift/RP-Config@refs/heads/master - path: $(Agent.BuildDirectory)/s/config - ${{ if ne(parameters.configVersion, 'latest') }}: - checkout: git://AzureRedHatOpenShift/RP-Config@refs/tags/${{parameters.configVersion}} - path: $(Agent.BuildDirectory)/s/config - task: DownloadBuildArtifacts@0 inputs: buildType: specific @@ -49,7 +47,7 @@ jobs: displayName: Download Deployer - template: ./template-deploy-azure-env.yml parameters: - configDirectory: $(Agent.BuildDirectory)/s/config/deploy + configDirectory: $(Agent.BuildDirectory)/s/RP-config/deploy deployerDirectory: $(System.ArtifactsDirectory)/deployer/drop configFileName: ${{ parameters.configFileName }} location: ${{ location }}