Skip to content

Commit

Permalink
Merge pull request #1264 from DFE-Digital/fix-database-restore
Browse files Browse the repository at this point in the history
fix confirm-production bug in database restore workflow
  • Loading branch information
neillturner authored Dec 5, 2024
2 parents 6d5c991 + 03649f2 commit 2623832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/database-restore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 2623832

Please sign in to comment.