From ba9ab717ed2e8f803c45e4c51956e7fef71a9d42 Mon Sep 17 00:00:00 2001 From: nugaon <50576770+nugaon@users.noreply.github.com> Date: Tue, 4 May 2021 15:12:01 +0200 Subject: [PATCH] fix: ci double quotes at if statement Github related issue [#866](https://github.com/actions/runner/issues/866) --- .github/workflows/publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index d049e63..dd122d8 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -44,7 +44,7 @@ jobs: run: | npm run build:env - name: Publish if it was clicked manually - if: "${{ github.event.inputs.buildImage }}" == 'true' && success() + if: ${{ github.event.inputs.buildImage }} == 'true' && success() run: | COMMIT_VERSION_TAG="${{ github.event.inputs.commitVersionTag }}" BEE_VERSION="${{ github.event.inputs.beeVersion }}"