chore: fix small typo in grep command (#7353)
* fix: ensure consistent version extraction for langflow-base in workflows Updated version extraction commands in multiple workflow files to consistently use 'head -n 1' for retrieving the first occurrence of the langflow-base version. This change improves reliability in version detection across docker-build, nightly_build, python_test, release_nightly, and release workflows. * fix: correct version extraction command in nightly build workflow Removed an extraneous quote from the version extraction command in the nightly_build.yml workflow file to ensure proper execution and reliability in retrieving the langflow-base version.
This commit is contained in:
parent
62aef0b8ed
commit
7ff6b1ae34
1 changed files with 1 additions and 1 deletions
2
.github/workflows/nightly_build.yml
vendored
2
.github/workflows/nightly_build.yml
vendored
|
|
@ -99,7 +99,7 @@ jobs:
|
|||
working-directory: src/backend/base
|
||||
run: |
|
||||
# If the main tag already exists, we need to retrieve the base version from the main tag codebase.
|
||||
version=$(uv tree | grep 'langflow-base' | awk '{print $3}' | head -n 1')
|
||||
version=$(uv tree | grep 'langflow-base' | awk '{print $3}' | head -n 1)
|
||||
echo "base_tag=$version" >> $GITHUB_OUTPUT
|
||||
echo "base_tag=$version"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue