mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 05:39:16 +08:00
ci: require main image built before backend/frontend images (#10561)
* Require main image built before backend/frontend images * Right. Skip fe/be when dry run because base images aren't built
This commit is contained in:
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
@ -460,8 +460,8 @@ jobs:
|
||||
|
||||
call_docker_build_main_backend:
|
||||
name: Call Docker Build Workflow for Langflow Backend
|
||||
if: ${{ inputs.build_docker_main }}
|
||||
needs: [ci]
|
||||
if: ${{ inputs.build_docker_main && !inputs.dry_run }}
|
||||
needs: [call_docker_build_main]
|
||||
uses: ./.github/workflows/docker-build-v2.yml
|
||||
with:
|
||||
ref: ${{ inputs.release_tag }}
|
||||
@ -472,8 +472,8 @@ jobs:
|
||||
|
||||
call_docker_build_main_frontend:
|
||||
name: Call Docker Build Workflow for Langflow Frontend
|
||||
if: ${{ inputs.build_docker_main }}
|
||||
needs: [ci]
|
||||
if: ${{ inputs.build_docker_main && !inputs.dry_run }}
|
||||
needs: [call_docker_build_main]
|
||||
uses: ./.github/workflows/docker-build-v2.yml
|
||||
with:
|
||||
ref: ${{ inputs.release_tag }}
|
||||
|
||||
Reference in New Issue
Block a user