From 03649f242b3e6ca63408424867676faaf1574d58 Mon Sep 17 00:00:00 2001 From: Neill Turner Date: Tue, 3 Dec 2024 13:43:42 +0000 Subject: [PATCH] fix confirm-production bug --- .github/workflows/database-restore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/database-restore.yml b/.github/workflows/database-restore.yml index e3cdb273e..f3560ea5a 100644 --- a/.github/workflows/database-restore.yml +++ b/.github/workflows/database-restore.yml @@ -33,7 +33,7 @@ env: jobs: restore: name: Restore AKS Database - if: ${{ inputs.environment != 'production' || (inputs.environment == 'production' && github.event.inputs.confirm-production == 'true' ) }} + if: ${{ inputs.environment != 'production' || (inputs.environment == 'production' && inputs.confirm-production == 'true' ) }} runs-on: ubuntu-latest environment: aks-${{ inputs.environment }} concurrency: deploy_${{ inputs.environment }}