From 2076c3ac83d943fc8bf40f3062f83bf24f4747fb Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 21 Aug 2024 22:52:47 -0300 Subject: [PATCH] build: Remove unnecessary quotes in workflow conditional statements. (#3491) --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c8d32cd32..90dd618f5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: release-base: name: Release Langflow Base needs: [ci] - if: inputs.release_package_base == 'true' + if: inputs.release_package_base == true runs-on: ubuntu-latest outputs: version: ${{ steps.check-version.outputs.version }} @@ -112,7 +112,7 @@ jobs: release-main: name: Release Langflow Main - if: inputs.release_package_main == 'true' + if: inputs.release_package_main == true needs: [release-base] runs-on: ubuntu-latest outputs: @@ -188,7 +188,7 @@ jobs: call_docker_build_base: name: Call Docker Build Workflow for Langflow Base - if : inputs.build_docker_base == 'true' + if : inputs.build_docker_base == true uses: ./.github/workflows/docker-build.yml strategy: matrix: @@ -204,7 +204,7 @@ jobs: call_docker_build_main: name: Call Docker Build Workflow for Langflow - if : inputs.build_docker_main == 'true' + if : inputs.build_docker_main == true uses: ./.github/workflows/docker-build.yml strategy: matrix: