From 98c876e4283a20372ec9f4062c9a11d478b84343 Mon Sep 17 00:00:00 2001 From: Riku Rouvila Date: Mon, 18 Dec 2023 10:08:54 +0200 Subject: [PATCH] use singlequotes --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2caaafbdc..e2f90333f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -169,7 +169,7 @@ jobs: CONTENT_SECURITY_POLICY_WILDCARD: ${{ vars.CONTENT_SECURITY_POLICY_WILDCARD }} reset: needs: deploy - if: ${{ github.event.inputs.reset == "true" && needs.deploy.outputs.outcome == 'success' }} + if: ${{ github.event.inputs.reset == 'true' && needs.deploy.outputs.outcome == 'success' }} uses: ./.github/workflows/clear-environment.yml with: environment: ${{ github.event.inputs.environment }} @@ -177,7 +177,7 @@ jobs: seed-data: needs: [deploy, reset] - if: ${{ github.event.inputs.reset == "true" && needs.reset.outputs.outcome == 'success' }} + if: ${{ github.event.inputs.reset == 'true' && needs.reset.outputs.outcome == 'success' }} uses: ./.github/workflows/seed-data.yml with: environment: ${{ github.event.inputs.environment }}