I am using the AzureRMWebAppDeployment@4 task to deploy a logic app using an Azure Devops yaml pipeline. I want to update values in both the host.json and appsettings.json files using json variable substitution.
According to the documentation, the JSONFiles parameter can accept "a newline-separated list of json files to substitute the variable values". How can I specify that?
I have tried the following:
- task: AzureRMWebAppDeployment@4
inputs:
...
JSONFiles: '**/parameters.json
**/host.json'
and also the following:
JSONFiles: '**/parameters.json|**/host.json'
There must be something simple I'm missing. How do I specify a pattern which matches two or more files by name?