From 09ec7028f46a9280582993e79a12b9088d2e3ddf Mon Sep 17 00:00:00 2001 From: Rory Abraham Date: Thu, 13 May 2021 15:19:09 -0700 Subject: [PATCH] Remove incorrect === from deploy.yml --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f9736a2904f7..3648179b6813 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,7 @@ jobs: deployStaging: runs-on: ubuntu-latest needs: validate - if: ${{ needs.validate.outputs.isVersionBumpPR === 'true' && github.ref == 'refs/heads/staging' }} + if: ${{ needs.validate.outputs.isVersionBumpPR == 'true' && github.ref == 'refs/heads/staging' }} steps: - name: Checkout staging branch