From 624776fea6219dec25e0907e43555694c611594b Mon Sep 17 00:00:00 2001
From: Houssem Dellai
Date: Fri, 15 Nov 2024 08:39:27 +0100
Subject: [PATCH 1/2] Update deployguide_ado.md
Added required `Create build pipeline` permission for the ADO pipeline.
---
documentation/deployguides/deployguide_ado.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/documentation/deployguides/deployguide_ado.md b/documentation/deployguides/deployguide_ado.md
index f9a4f62..849acd0 100644
--- a/documentation/deployguides/deployguide_ado.md
+++ b/documentation/deployguides/deployguide_ado.md
@@ -91,7 +91,7 @@ Below are the three repositories that you will import. They each serve a differe
- Select the "` Build Service`" account for your project under the Users section. Change the permission for **Edit build pipeline** to **Allow**
+ Select the "` Build Service`" account for your project under the Users section. Change the permissions for **Edit build pipeline** and **Create build pipeline** to **Allow**
From ea7b5bcd30b8c51e6524ebeee48f62a18688b06d Mon Sep 17 00:00:00 2001
From: Houssem Dellai
Date: Fri, 15 Nov 2024 08:40:28 +0100
Subject: [PATCH 2/2] Update create_ado_pipelines.sh
Added missing `\` in the commands.
---
.azuredevops/scripts/create_ado_pipelines.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.azuredevops/scripts/create_ado_pipelines.sh b/.azuredevops/scripts/create_ado_pipelines.sh
index be937f7..e7e08b6 100644
--- a/.azuredevops/scripts/create_ado_pipelines.sh
+++ b/.azuredevops/scripts/create_ado_pipelines.sh
@@ -9,11 +9,11 @@ az pipelines folder create \
--path $repo_name \
--project $project_name
-az pipelines folder create
+az pipelines folder create \
--path $repo_name/infrastructure \
--project $project_name
-az pipelines folder create
+az pipelines folder create \
--path $repo_name/mlops \
--project $project_name