build: Remove unnecessary quotes in workflow conditional statements. (#3491)
This commit is contained in:
parent
3623d9ac9c
commit
2076c3ac83
1 changed files with 4 additions and 4 deletions
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue