From 8a58b8fb0d0d25b6602436628723a39943212967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 28 Apr 2024 21:50:35 +0200 Subject: [PATCH] only use azure service bus config, instead of entire azure app config --- .github/workflows/website_backend_ci.yml | 2 +- .github/workflows/website_cd.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/website_backend_ci.yml b/.github/workflows/website_backend_ci.yml index b57e7e04..e6a1a0b5 100644 --- a/.github/workflows/website_backend_ci.yml +++ b/.github/workflows/website_backend_ci.yml @@ -31,4 +31,4 @@ jobs: --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" --filter Category!=ManualTest env: - ConnectionStrings:AppConfig: ${{ secrets.AZURE_APP_CONFIGURATION_CONNECTION_STRING }} + ConnectionStrings:AzureServiceBus: ${{ secrets.AZURE_SERVICE_BUS_CONNECTION_STRING }} diff --git a/.github/workflows/website_cd.yml b/.github/workflows/website_cd.yml index a072b4d0..a528e30e 100644 --- a/.github/workflows/website_cd.yml +++ b/.github/workflows/website_cd.yml @@ -35,7 +35,7 @@ jobs: --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" --filter Category!=ManualTest env: - ConnectionStrings:AppConfig: ${{ secrets.AZURE_APP_CONFIGURATION_CONNECTION_STRING }} + ConnectionStrings:AzureServiceBus: ${{ secrets.AZURE_SERVICE_BUS_CONNECTION_STRING }} - name: Publish run: dotnet publish "${{ env.WORKING_DIRECTORY }}" -c Release --no-build --output "${{ env.AZURE_WEBAPP_PACKAGE_PATH }}"