From d6d9814036bea30ea0baaee4f3a8a3d550aa2b23 Mon Sep 17 00:00:00 2001 From: Maricarme Saldivar Date: Thu, 29 Jul 2021 16:56:10 -0500 Subject: [PATCH 1/4] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c4dc121..6d03b4c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -106,8 +106,10 @@ stages: appSettings: | [ { - "name": "AppSettings:LeaderboardFunctionUrl", + "name": "LeaderboardFunctionUrl", "value": "http://$(LeaderboardAppName).azurewebsites.net/api/LeaderboardFunction", "slotSetting": false } - ] \ No newline at end of file + ] + + \ No newline at end of file From 7b2bbd329aef855deaeaf36904a0fb0f7e236e4f Mon Sep 17 00:00:00 2001 From: Maricarme Saldivar Date: Thu, 29 Jul 2021 17:19:17 -0500 Subject: [PATCH 2/4] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6d03b4c..9958f34 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -106,10 +106,8 @@ stages: appSettings: | [ { - "name": "LeaderboardFunctionUrl", + "name": "AppSettings_LeaderboardFunctionUrl", "value": "http://$(LeaderboardAppName).azurewebsites.net/api/LeaderboardFunction", "slotSetting": false } - ] - - \ No newline at end of file + ] \ No newline at end of file From 28b5dd766d368b8814ee7573da8b390b050a6356 Mon Sep 17 00:00:00 2001 From: Maricarme Saldivar Date: Thu, 29 Jul 2021 18:05:52 -0500 Subject: [PATCH 3/4] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9958f34..448cd02 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -106,7 +106,7 @@ stages: appSettings: | [ { - "name": "AppSettings_LeaderboardFunctionUrl", + "name": "LeaderboardFunctionUrl", "value": "http://$(LeaderboardAppName).azurewebsites.net/api/LeaderboardFunction", "slotSetting": false } From 01415126b4c912241a34b5ee64bdd20e03af0204 Mon Sep 17 00:00:00 2001 From: Maricarme Saldivar Date: Fri, 30 Jul 2021 12:03:35 -0500 Subject: [PATCH 4/4] Fix appSettings because is a linux service plan we have to use __ (double underscore) instead of : --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 448cd02..0bd35d0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -106,7 +106,7 @@ stages: appSettings: | [ { - "name": "LeaderboardFunctionUrl", + "name": "AppSettings__LeaderboardFunctionUrl", "value": "http://$(LeaderboardAppName).azurewebsites.net/api/LeaderboardFunction", "slotSetting": false }