Skip to content

Commit

Permalink
build: Remove unnecessary quotes in workflow conditional statements. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ogabrielluiz authored Aug 22, 2024
1 parent 3623d9a commit 2076c3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 2076c3a

Please sign in to comment.