diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 06fa1f0..1c0ad4a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ jobs: shell: pwsh run: | (Get-Content -Path WahlGPT.Common/Settings.cs) -replace 'API_ENDPOINT', '${{ secrets.API_ENDPOINT }}' | Set-Content -Path WahlGPT.Common/Settings.cs - (Get-Content -Path WahlGPT.Common/Settings.cs) -replace 'OPENAI_API_KEY', '${ { secrets.OPENAI_API_KEY }}' | Set-Content -Path WahlGPT.Common/Settings.cs + (Get-Content -Path WahlGPT.Common/Settings.cs) -replace 'OPENAI_API_KEY', '${{ secrets.OPENAI_API_KEY }}' | Set-Content -Path WahlGPT.Common/Settings.cs (Get-Content -Path WahlGPT.Common/Settings.cs) -replace 'QDRANT_HOST', '${{ secrets.QDRANT_HOST }}' | Set-Content -Path WahlGPT.Common/Settings.cs (Get-Content -Path WahlGPT.Common/Settings.cs) -replace 'QDRANT_API_KEY', '${{ secrets.QDRANT_API_KEY }}' | Set-Content -Path WahlGPT.Common/Settings.cs (Get-Content -Path WahlGPT.Common/Settings.cs) -replace 'BLOB_CONNECTION_STRING', '${{ secrets.BLOB_CONNECTION_STRING }}' | Set-Content -Path WahlGPT.Common/Settings.cs