mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 22:14:11 +08:00
* docs: record nightly→stable bundle cutover plan (gated on lfx 1.10.0) Add src/bundles/NIGHTLY.md documenting why langflow-nightly currently renames the bundles (lfx and lfx-nightly ship the same lfx/ import, so a stable bundle would co-install both and collide) and the deferred cutover (Approach A: canonical pre-releases; B: lfx as a bundle extra), gated on stable lfx 1.10.0 being published to PyPI. Also expand two docstrings in scripts/ci/update_lfx_version.py to state the deeper install-conflict reason, not just the resolve failure. No behavior change. * feat(ci): nightly Approach A — canonical pre-releases, drop nightly bundles [DRAFT/gated] (#13529) feat(ci): nightly Approach A — canonical pre-releases, drop nightly bundles DRAFT reference implementation of the nightly→stable-bundle cutover documented in src/bundles/NIGHTLY.md. Publishes the nightly under CANONICAL package names as .devN pre-releases instead of separate *-nightly distributions, so the stable lfx-* bundles resolve against a single canonical lfx (no dual-lfx install collision) and no nightly bundle packages are produced. - tag scripts (pypi/lfx/sdk_nightly_tag.py): count .devN against the canonical PyPI histories instead of the *-nightly projects - update scripts: stop renaming to *-nightly; set .devN versions; re-pin inter-package deps to exact canonical dev versions; delete the bundle rename/repin (update_lfx_dep_in_bundles, rename_bundles_for_nightly) - release_nightly.yml: publish canonical pre-releases; remove bundle build, dist-nightly-bundles artifact, publish-nightly-bundles job + its gate; verify canonical names; main wheel glob dist/langflow-*.whl - nightly_build.yml: drop the bundle git-add in the tag commit - NIGHTLY.md: Approach A marked implemented + activation gate + A1/A2 follow-ups Held as DRAFT: do not activate until stable lfx 1.10.0 is published AND the nightly base is the next minor (release-1.11.0). A 1.10.0.devN core sorts below 1.10.0 and would fail the bundles' >=1.10.0 floor. Stacked on #13528. (.secrets.baseline: incidental line-number shifts for the two workflows + prune of pre-existing stale Pokédex Agent.json entries.) * docs(ci): drop internal 'Approach A' label from nightly cutover comments Comment- and docstring-only change across scripts/ci/* and the two nightly workflows; no logic change. The two workflow edits stay single-line so .secrets.baseline line numbers are unaffected. src/bundles/NIGHTLY.md keeps its A/B decision-record framing intentionally. * feat(ci): make nightly consumers work with canonical pre-releases Follow-ups from the nightly cutover that are part of its blast radius (the nightly now publishes canonical `.devN` pre-releases, not `*-nightly` distributions): - version.py: derive the "Nightly" label from the `.dev` version marker, since the canonical `langflow`/`langflow-base` distribution matches first in the lookup. Keeps the startup banner and telemetry `package` field identifying nightlies. Adds a canonical-dev test; updates the base-dev assertion. - ci.yml check-nightly-status: query the canonical `langflow` project and pick the latest `.devN` release date instead of `langflow-nightly`'s `.info.version`. - db-migration-validation.yml: install the nightly as `langflow[postgresql]==<dev>` (pre-release) instead of `langflow-nightly[...]`; verify via version("langflow"). - src/lfx/README.md: nightly install is `uv pip install --pre lfx`. - NIGHTLY.md: rewrite the follow-ups section (these are addressed; Docker image, A2 meta-package, and website docs remain deferred by design). The `langflowai/langflow-nightly` Docker image name is intentionally unchanged. * fix(ci): correct nightly verify uv tree parsing + stale base-dep regex Addresses review of #13528: - release_nightly.yml LFX verify: `uv tree | grep lfx | head -n1` matches the bundle `lfx-ibm` first → 'Name lfx-ibm does not match lfx'. Root the tree with `uv tree --package lfx` so the first line is the lfx package itself. - release_nightly.yml base verify: under canonical naming `langflow-base` prints as a top-level `langflow-base v<ver>` line, so the old $2/$3 field parse read name="v0.10.0" and version="". Use `uv tree --package langflow-base` and $1/$2. - update_lf_base_dependency.py update_base_dep: regex only accepted ~=/==, so its CLI entry point couldn't match the current root dep `langflow-base[complete]>=0.10.0`. Add >= (parity with update_uv_dependency.py). The active nightly path uses update_uv_dependency.py and was unaffected. * docs(nightly): point NIGHTLY.md status at the activation gate, not draft state Per review of #13528: this file ships inside #13528 (#13529 was folded in), so the 'stacked on prep #13528' + 'held as a draft' framing is stale and misleading. Reword the status block to state the real guard is the activation gate (stable lfx 1.10.0 published AND next-minor base), not merge/draft state. Also reword the follow-ups heading 'decide before un-drafting' -> 'decide before activating'.
532 lines
19 KiB
YAML
532 lines
19 KiB
YAML
name: Langflow Nightly Build
|
|
run-name: Langflow Nightly Release by @${{ github.actor }}
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
build_docker_base:
|
|
description: "Build Docker Image for Langflow Nightly Base"
|
|
required: true
|
|
type: boolean
|
|
default: false
|
|
build_docker_main:
|
|
description: "Build Docker Image for Langflow Nightly"
|
|
required: true
|
|
type: boolean
|
|
default: false
|
|
build_docker_ep:
|
|
description: "Build Docker Image for Langflow Nightly with Entrypoint"
|
|
required: false
|
|
type: boolean
|
|
default: false
|
|
build_lfx:
|
|
description: "Build and release LFX package"
|
|
required: false
|
|
type: boolean
|
|
default: false
|
|
nightly_tag_release:
|
|
description: "Tag for the nightly main build"
|
|
required: true
|
|
type: string
|
|
nightly_tag_base:
|
|
description: "Tag for the nightly base build"
|
|
required: true
|
|
type: string
|
|
nightly_tag_lfx:
|
|
description: "Tag for the nightly LFX build"
|
|
required: false
|
|
type: string
|
|
nightly_tag_sdk:
|
|
description: "Tag for the nightly SDK build"
|
|
required: false
|
|
type: string
|
|
push_to_registry:
|
|
description: "Whether to push images to registries. Set to false for testing builds without publishing."
|
|
required: true
|
|
type: boolean
|
|
default: false
|
|
|
|
env:
|
|
POETRY_VERSION: "1.8.3"
|
|
PYTHON_VERSION: "3.13"
|
|
|
|
jobs:
|
|
build-nightly-lfx:
|
|
name: Build LFX Nightly
|
|
if: ${{ inputs.build_lfx }}
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
version: ${{ steps.verify.outputs.version }}
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
steps:
|
|
- name: Check out the code at a specific ref
|
|
uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ inputs.nightly_tag_release }}
|
|
persist-credentials: true
|
|
- name: "Setup Environment"
|
|
uses: astral-sh/setup-uv@v6
|
|
with:
|
|
enable-cache: true
|
|
cache-dependency-glob: "uv.lock"
|
|
python-version: ${{ env.PYTHON_VERSION }}
|
|
prune-cache: false
|
|
- name: Install LFX dependencies
|
|
run: cd src/lfx && uv sync
|
|
|
|
- name: Verify SDK Nightly Name and Version
|
|
if: ${{ inputs.build_lfx }}
|
|
run: |
|
|
name=$(grep '^name = "' src/sdk/pyproject.toml | head -n 1 | sed 's/.*"\(.*\)".*/\1/')
|
|
version=$(grep '^version = "' src/sdk/pyproject.toml | head -n 1 | sed 's/.*"\(.*\)".*/\1/')
|
|
if [ "$name" != "langflow-sdk" ]; then
|
|
echo "Name $name does not match langflow-sdk. Exiting the workflow."
|
|
exit 1
|
|
fi
|
|
if [ "v$version" != "${{ inputs.nightly_tag_sdk }}" ]; then
|
|
echo "Version v$version does not match nightly tag ${{ inputs.nightly_tag_sdk }}. Exiting the workflow."
|
|
exit 1
|
|
fi
|
|
|
|
- name: Verify Nightly Name and Version
|
|
id: verify
|
|
run: |
|
|
cd src/lfx
|
|
# Root the tree at lfx; a bare `grep lfx` matches bundles like `lfx-ibm` first.
|
|
name=$(uv tree --package lfx | head -n 1 | awk '{print $1}')
|
|
version=$(uv tree --package lfx | head -n 1 | awk '{print $2}')
|
|
if [ "$name" != "lfx" ]; then
|
|
echo "Name $name does not match lfx. Exiting the workflow."
|
|
exit 1
|
|
fi
|
|
if [ "$version" != "${{ inputs.nightly_tag_lfx }}" ]; then
|
|
echo "Version $version does not match nightly tag ${{ inputs.nightly_tag_lfx }}. Exiting the workflow."
|
|
exit 1
|
|
fi
|
|
# Strip the leading `v` from the version
|
|
version=$(echo $version | sed 's/^v//')
|
|
echo "version=$version" >> $GITHUB_OUTPUT
|
|
|
|
- name: Build langflow-sdk for distribution
|
|
run: |
|
|
make sdk_build args="--wheel"
|
|
|
|
- name: Build LFX for distribution
|
|
run: |
|
|
cd src/lfx
|
|
rm -rf dist/
|
|
uv build --wheel --out-dir dist
|
|
|
|
- name: Test LFX CLI
|
|
run: |
|
|
cd src/lfx
|
|
# Use a clean venv and install both wheels together so uv can resolve
|
|
# the local SDK dependency without falling back to PyPI.
|
|
uv venv test-env --seed
|
|
uv pip install --python ./test-env/bin/python --force-reinstall ../sdk/dist/*.whl dist/*.whl
|
|
./test-env/bin/lfx --help
|
|
echo "LFX CLI test completed successfully"
|
|
|
|
# PyPI publishing moved to after cross-platform testing
|
|
|
|
- name: Upload langflow-sdk Artifact
|
|
uses: actions/upload-artifact@v6
|
|
with:
|
|
name: dist-nightly-sdk
|
|
path: src/sdk/dist
|
|
|
|
- name: Upload LFX Artifact
|
|
uses: actions/upload-artifact@v6
|
|
with:
|
|
name: dist-nightly-lfx
|
|
path: src/lfx/dist
|
|
|
|
build-nightly-base:
|
|
name: Build Langflow Nightly Base
|
|
needs: [build-nightly-lfx]
|
|
if: ${{ always() && (needs.build-nightly-lfx.result == 'success' || inputs.build_lfx == false) }}
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
outputs:
|
|
version: ${{ steps.verify.outputs.version }}
|
|
skipped: ${{ steps.verify.outputs.skipped }}
|
|
steps:
|
|
- name: Check out the code at a specific ref
|
|
uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ inputs.nightly_tag_release }}
|
|
persist-credentials: true
|
|
- name: "Setup Environment"
|
|
uses: astral-sh/setup-uv@v6
|
|
with:
|
|
enable-cache: true
|
|
cache-dependency-glob: "uv.lock"
|
|
python-version: ${{ env.PYTHON_VERSION }}
|
|
prune-cache: false
|
|
|
|
- name: Download LFX artifact
|
|
if: inputs.build_lfx
|
|
uses: actions/download-artifact@v7
|
|
with:
|
|
name: dist-nightly-lfx
|
|
path: lfx-dist
|
|
|
|
- name: Install the project
|
|
run: uv sync
|
|
|
|
- name: Force reinstall LFX from built wheel
|
|
if: inputs.build_lfx
|
|
run: |
|
|
echo "Installing LFX from built wheel to test the actual distribution package..."
|
|
# While workspace resolution installs from source, we want to test the exact
|
|
# wheel that will be published to PyPI to catch any packaging issues
|
|
uv pip install --force-reinstall --no-deps lfx-dist/*.whl
|
|
|
|
- name: Verify Nightly Name and Version
|
|
id: verify
|
|
run: |
|
|
# Root the tree at langflow-base; it prints as a top-level `langflow-base v<ver>` line,
|
|
# so a bare `grep langflow-base` would read the version into $name and leave $version empty.
|
|
name=$(uv tree --package langflow-base | head -n 1 | awk '{print $1}')
|
|
version=$(uv tree --package langflow-base | head -n 1 | awk '{print $2}')
|
|
# Strip extras from package name (e.g., "langflow-base[complete]" -> "langflow-base")
|
|
name_without_extras=$(echo $name | sed 's/\[.*\]//')
|
|
if [ "$name_without_extras" != "langflow-base" ]; then
|
|
echo "Name $name_without_extras does not match langflow-base. Exiting the workflow."
|
|
echo "skipped=true" >> $GITHUB_OUTPUT
|
|
exit 1
|
|
fi
|
|
if [ "$version" != "${{ inputs.nightly_tag_base }}" ]; then
|
|
echo "Version $version does not match nightly tag ${{ inputs.nightly_tag_base }}. Exiting the workflow."
|
|
echo "skipped=true" >> $GITHUB_OUTPUT
|
|
exit 1
|
|
fi
|
|
# Strip the leading `v` from the version
|
|
version=$(echo $version | sed 's/^v//')
|
|
echo "version=$version" >> $GITHUB_OUTPUT
|
|
echo "skipped=false" >> $GITHUB_OUTPUT
|
|
|
|
- name: Build Langflow Base for distribution
|
|
run: |
|
|
rm -rf src/backend/base/dist
|
|
rm -rf dist
|
|
make build base=true args="--no-sources --wheel"
|
|
|
|
- name: Test Langflow Base CLI
|
|
run: |
|
|
# TODO: Unsure why the whl is not built in src/backend/base/dist
|
|
mkdir src/backend/base/dist
|
|
mv dist/*.whl src/backend/base/dist/
|
|
# Install with [complete] extra to test all optional dependencies
|
|
WHEEL_FILE=$(ls src/backend/base/dist/*.whl)
|
|
uv pip install "${WHEEL_FILE}[complete]"
|
|
uv run python -m langflow run --host localhost --port 7860 --backend-only &
|
|
SERVER_PID=$!
|
|
# Wait for the server to start
|
|
timeout 120 bash -c 'until curl -f http://localhost:7860/api/v1/auto_login; do sleep 2; done' || (echo "Server did not start in time" && kill $SERVER_PID && exit 1)
|
|
# Terminate the server
|
|
kill $SERVER_PID || (echo "Failed to terminate the server" && exit 1)
|
|
sleep 20 # give the server some time to terminate
|
|
# Check if the server is still running
|
|
if kill -0 $SERVER_PID 2>/dev/null; then
|
|
echo "Failed to terminate the server"
|
|
exit 0
|
|
else
|
|
echo "Server terminated successfully"
|
|
fi
|
|
|
|
# PyPI publishing moved to after cross-platform testing
|
|
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v6
|
|
with:
|
|
name: dist-nightly-base
|
|
path: src/backend/base/dist
|
|
|
|
build-nightly-main:
|
|
name: Build Langflow Nightly Main
|
|
needs: [build-nightly-base]
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
version: ${{ steps.verify.outputs.version }}
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
steps:
|
|
- name: Check out the code at a specific ref
|
|
uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ inputs.nightly_tag_release}}
|
|
persist-credentials: true
|
|
- name: "Setup Environment"
|
|
uses: astral-sh/setup-uv@v6
|
|
with:
|
|
enable-cache: true
|
|
cache-dependency-glob: "uv.lock"
|
|
python-version: ${{ env.PYTHON_VERSION }}
|
|
prune-cache: false
|
|
|
|
- name: Download LFX artifact
|
|
if: inputs.build_lfx
|
|
uses: actions/download-artifact@v7
|
|
with:
|
|
name: dist-nightly-lfx
|
|
path: lfx-dist
|
|
|
|
- name: Download base artifact
|
|
uses: actions/download-artifact@v7
|
|
with:
|
|
name: dist-nightly-base
|
|
path: base-dist
|
|
|
|
- name: Install the project
|
|
run: uv sync
|
|
|
|
- name: Force reinstall packages from built wheels
|
|
run: |
|
|
# While workspace resolution installs from source, we want to test the exact
|
|
# wheels that will be published to PyPI to catch any packaging issues
|
|
if [ "${{ inputs.build_lfx }}" == "true" ]; then
|
|
echo "Installing LFX from built wheel..."
|
|
uv pip install --force-reinstall --no-deps lfx-dist/*.whl
|
|
fi
|
|
echo "Installing langflow-base from built wheel..."
|
|
uv pip install --force-reinstall --no-deps base-dist/*.whl
|
|
|
|
- name: Verify Nightly Name and Version
|
|
id: verify
|
|
run: |
|
|
name=$(uv tree | grep -E '^langflow[[:space:]]' | awk '{print $1}')
|
|
version=$(uv tree | grep -E '^langflow[[:space:]]' | awk '{print $2}')
|
|
if [ "$name" != "langflow" ]; then
|
|
echo "Name $name does not match langflow. Exiting the workflow."
|
|
exit 1
|
|
fi
|
|
if [ "$version" != "${{ inputs.nightly_tag_release }}" ]; then
|
|
echo "Version $version does not match nightly tag ${{ inputs.nightly_tag_release }}. Exiting the workflow."
|
|
exit 1
|
|
fi
|
|
# Strip the leading `v` from the version
|
|
version=$(echo $version | sed 's/^v//')
|
|
echo "version=$version" >> $GITHUB_OUTPUT
|
|
- name: Wait for PyPI Propagation
|
|
if: needs.build-nightly-base.outputs.skipped == 'false'
|
|
run: sleep 300 # wait for 5 minutes to ensure PyPI propagation of base
|
|
|
|
- name: Build Langflow Main for distribution
|
|
run: make build main=true args="--no-sources --wheel"
|
|
- name: Test Langflow Main CLI
|
|
run: |
|
|
uv pip install dist/*.whl
|
|
uv run python -m langflow run --host localhost --port 7860 --backend-only &
|
|
SERVER_PID=$!
|
|
# Wait for the server to start
|
|
timeout 120 bash -c 'until curl -f http://localhost:7860/health_check; do sleep 2; done' || (echo "Server did not start in time" && kill $SERVER_PID && exit 1)
|
|
# Terminate the server
|
|
kill $SERVER_PID || (echo "Failed to terminate the server" && exit 1)
|
|
sleep 20 # give the server some time to terminate
|
|
# Check if the server is still running
|
|
if kill -0 $SERVER_PID 2>/dev/null; then
|
|
echo "Failed to terminate the server"
|
|
exit 0
|
|
else
|
|
echo "Server terminated successfully"
|
|
fi
|
|
|
|
- name: Prepare Langflow Main artifact
|
|
run: |
|
|
shopt -s nullglob
|
|
MAIN_WHEELS=(dist/langflow-*.whl)
|
|
if [ ${#MAIN_WHEELS[@]} -ne 1 ]; then
|
|
echo "Expected exactly one langflow wheel in dist/, found ${#MAIN_WHEELS[@]}"
|
|
ls -la dist/
|
|
exit 1
|
|
fi
|
|
rm -rf main-dist
|
|
mkdir -p main-dist
|
|
cp "${MAIN_WHEELS[0]}" main-dist/
|
|
|
|
# Bundles are NOT rebuilt/republished for nightly. The stable `lfx-*` bundles on
|
|
# PyPI work as-is against the canonical `lfx` pre-release (see src/bundles/NIGHTLY.md). The
|
|
# cross-platform test self-builds the bundles from src/bundles for install coverage.
|
|
|
|
# PyPI publishing moved to after cross-platform testing
|
|
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v6
|
|
with:
|
|
name: dist-nightly-main
|
|
path: main-dist
|
|
|
|
test-cross-platform:
|
|
name: Test Cross-Platform Installation
|
|
needs: [build-nightly-lfx, build-nightly-base, build-nightly-main]
|
|
uses: ./.github/workflows/cross-platform-test.yml
|
|
with:
|
|
base-artifact-name: "dist-nightly-base"
|
|
main-artifact-name: "dist-nightly-main"
|
|
lfx-artifact-name: "dist-nightly-lfx"
|
|
sdk-artifact-name: "dist-nightly-sdk"
|
|
|
|
publish-nightly-lfx:
|
|
name: Publish LFX Nightly to PyPI
|
|
needs: [build-nightly-lfx, test-cross-platform, publish-nightly-sdk]
|
|
if: ${{ inputs.build_lfx }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out the code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ inputs.nightly_tag_release }}
|
|
persist-credentials: true
|
|
- name: Download LFX artifact
|
|
uses: actions/download-artifact@v7
|
|
with:
|
|
name: dist-nightly-lfx
|
|
path: src/lfx/dist
|
|
- name: Setup Environment
|
|
uses: astral-sh/setup-uv@v6
|
|
with:
|
|
enable-cache: false
|
|
python-version: "3.13"
|
|
- name: Publish LFX to PyPI
|
|
env:
|
|
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
|
|
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
|
run: |
|
|
make lfx_publish
|
|
|
|
publish-nightly-sdk:
|
|
name: Publish SDK Nightly to PyPI
|
|
needs: [build-nightly-lfx, test-cross-platform]
|
|
if: ${{ inputs.build_lfx }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out the code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ inputs.nightly_tag_release }}
|
|
persist-credentials: true
|
|
- name: Download langflow-sdk artifact
|
|
uses: actions/download-artifact@v7
|
|
with:
|
|
name: dist-nightly-sdk
|
|
path: src/sdk/dist
|
|
- name: Setup Environment
|
|
uses: astral-sh/setup-uv@v6
|
|
with:
|
|
enable-cache: false
|
|
python-version: "3.13"
|
|
- name: Publish SDK to PyPI
|
|
env:
|
|
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
|
|
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
|
run: |
|
|
make sdk_publish
|
|
|
|
publish-nightly-base:
|
|
name: Publish Langflow Base Nightly to PyPI
|
|
needs: [build-nightly-base, test-cross-platform, publish-nightly-lfx]
|
|
if: ${{ always() && needs.build-nightly-base.result == 'success' && needs.test-cross-platform.result == 'success' && (needs.publish-nightly-lfx.result == 'success' || inputs.build_lfx == false) }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ inputs.nightly_tag_release }}
|
|
persist-credentials: true
|
|
- name: Download base artifact
|
|
uses: actions/download-artifact@v7
|
|
with:
|
|
name: dist-nightly-base
|
|
path: src/backend/base/dist
|
|
- name: Setup Environment
|
|
uses: astral-sh/setup-uv@v6
|
|
with:
|
|
enable-cache: false
|
|
python-version: "3.13"
|
|
- name: Publish base to PyPI
|
|
if: needs.build-nightly-base.outputs.skipped == 'false'
|
|
env:
|
|
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
|
|
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
|
run: |
|
|
make publish base=true
|
|
|
|
publish-nightly-main:
|
|
name: Publish Langflow Main Nightly to PyPI
|
|
needs: [build-nightly-main, test-cross-platform, publish-nightly-base]
|
|
if: ${{ always() && needs.build-nightly-main.result == 'success' && needs.test-cross-platform.result == 'success' && needs.publish-nightly-base.result == 'success' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ inputs.nightly_tag_release }}
|
|
persist-credentials: true
|
|
- name: Download main artifact
|
|
uses: actions/download-artifact@v7
|
|
with:
|
|
name: dist-nightly-main
|
|
path: dist
|
|
- name: Setup Environment
|
|
uses: astral-sh/setup-uv@v6
|
|
with:
|
|
enable-cache: false
|
|
python-version: "3.13"
|
|
- name: Publish to PyPI
|
|
env:
|
|
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
|
|
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
|
run: |
|
|
make publish main=true
|
|
|
|
call_docker_build_base:
|
|
name: Call Docker Build Workflow for Langflow Base
|
|
if: ${{ always() && inputs.build_docker_base }}
|
|
needs: [build-nightly-base, build-nightly-main]
|
|
uses: ./.github/workflows/docker-nightly-build.yml
|
|
with:
|
|
ref: ${{ inputs.nightly_tag_release }}
|
|
release_type: nightly-base
|
|
push_to_registry: ${{ inputs.push_to_registry }}
|
|
secrets: inherit
|
|
|
|
call_docker_build_main:
|
|
name: Call Docker Build Workflow for Langflow
|
|
if: ${{ always() && inputs.build_docker_main }}
|
|
needs: [build-nightly-main, call_docker_build_base]
|
|
uses: ./.github/workflows/docker-nightly-build.yml
|
|
with:
|
|
ref: ${{ inputs.nightly_tag_release }}
|
|
release_type: nightly-main
|
|
push_to_registry: ${{ inputs.push_to_registry }}
|
|
secrets: inherit
|
|
|
|
# TODO: Uncomment this when our runner can fit the builds that contain pytorch (and other large dependencies)
|
|
# call_docker_build_main_all:
|
|
# name: Call Docker Build Workflow for langflow-all
|
|
# if: always() && ${{ inputs.build_docker_main == 'true' }}
|
|
# needs: [build-nightly-main]
|
|
# uses: ./.github/workflows/docker-nightly-build.yml
|
|
# with:
|
|
# ref: ${{ inputs.nightly_tag_release }}
|
|
# release_type: nightly-main-all
|
|
# main_version: ${{ inputs.nightly_tag_release }}
|
|
# secrets: inherit
|
|
|
|
# call_docker_build_main_ep:
|
|
# name: Call Docker Build Workflow for Langflow with Entrypoint
|
|
# if: ${{ always() && inputs.build_docker_ep }}
|
|
# needs: [build-nightly-main, call_docker_build_main]
|
|
# uses: ./.github/workflows/docker-build-v2.yml
|
|
# with:
|
|
# ref: ${{ inputs.nightly_tag_release }}
|
|
# release_type: main-ep
|
|
# push_to_registry: ${{ inputs.push_to_registry }}
|
|
# secrets: inherit
|