diff --git a/.github/workflows/azure-dev.yml b/.github/workflows/azure-dev.yml index 1a4c578..b166e6c 100644 --- a/.github/workflows/azure-dev.yml +++ b/.github/workflows/azure-dev.yml @@ -87,12 +87,12 @@ jobs: $openAI = @{ Endpoint = $endpoint; ApiKey = $apiKey; DeploymentId = $deploymentId; } - Copy-Item -Path ./AspireYouTubeSummariser.AppHost/appsettings.Development.sample.json ` - -Destination ./AspireYouTubeSummariser.AppHost/appsettings.Development.json -Force + # Copy-Item -Path ./AspireYouTubeSummariser.AppHost/appsettings.Development.sample.json ` + # -Destination ./AspireYouTubeSummariser.AppHost/appsettings.Development.json -Force - $appsettings = Get-Content -Path ./AspireYouTubeSummariser.AppHost/appsettings.Development.json | ConvertFrom-Json + $appsettings = Get-Content -Path ./AspireYouTubeSummariser.AppHost/appsettings.json | ConvertFrom-Json $appsettings.OpenAI = $openAI - $appsettings | ConvertTo-Json -Depth 100 | Out-File -Path ./AspireYouTubeSummariser.AppHost/appsettings.Development.json -Force + $appsettings | ConvertTo-Json -Depth 100 | Out-File -Path ./AspireYouTubeSummariser.AppHost/appsettings.json -Force - name: Setup .NET SDK uses: actions/setup-dotnet@v3