From 5f6a4160bbfd1286f6831e5e441630d1ba8bfa2e Mon Sep 17 00:00:00 2001 From: Ella Bronson <111298136+ebronson68@users.noreply.github.com> Date: Mon, 19 Jun 2023 15:56:16 -0500 Subject: [PATCH] Fixing Game Config Deploy Workflow (#42) ## Description Fixing game config deploy workflow by adding quotes around `Update-CloudGameConfigs.ps1` arguments ## Related Issues - Jira Issue: N/A --- .github/workflows/update-game-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-game-config.yaml b/.github/workflows/update-game-config.yaml index 288cddcd..ef462a57 100644 --- a/.github/workflows/update-game-config.yaml +++ b/.github/workflows/update-game-config.yaml @@ -51,4 +51,4 @@ jobs: - name: Update Game Configs shell: pwsh run: | - ./deployments/scripts/Update-CloudGameConfigs.ps1 -DBConnectionString ${{ env.DB_CONNECTION_STRING }} -StorageAccountKey ${{ env.STORAGE_ACCOUNT_KEY }} -ContainerName ${{ env.STORAGE_ACCOUNT_CONTAINER }} -UpdatedBy 'GitHub Actions' \ No newline at end of file + ./deployments/scripts/Update-CloudGameConfigs.ps1 -DBConnectionString "${{ env.DB_CONNECTION_STRING }}" -StorageAccountKey "${{ env.STORAGE_ACCOUNT_KEY }}" -ContainerName "${{ env.STORAGE_ACCOUNT_CONTAINER }}" -UpdatedBy 'GitHub Actions' \ No newline at end of file