From 7a854dcf5a1c30d0e29014ae9f24e3b35a7af859 Mon Sep 17 00:00:00 2001 From: nocarryr Date: Mon, 1 Aug 2022 16:46:46 -0500 Subject: [PATCH] Correct workflow syntax --- .github/workflows/dist-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dist-test.yml b/.github/workflows/dist-test.yml index a5fe0d0..b42d691 100644 --- a/.github/workflows/dist-test.yml +++ b/.github/workflows/dist-test.yml @@ -79,7 +79,7 @@ jobs: deploy: needs: test - if: ${{ success() && (github.event.inputs.allow_deploy == 'true' }} + if: ${{ success() && (github.event.inputs.allow_deploy == 'true') }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v2