Test release workflow (#1608)

* Test release workflow

* fix langflow-base version on pyproject

---------

Co-authored-by: Matheus <jacquesmats@gmail.com>
This commit is contained in:
Matheus Jacques 2024-04-04 23:13:26 +02:00 committed by GitHub
commit 4202268419
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View file

@ -7,7 +7,7 @@ on:
branches:
- dev
paths:
- "pyproject.toml"
- "src/backend/base/pyproject.toml"
workflow_dispatch:
inputs:
force_release:

View file

@ -41,6 +41,8 @@ jobs:
id: check-version
run: |
echo version=$(poetry version --short) >> $GITHUB_OUTPUT
- name: Display pyproject.toml langflow-base Version
run: cat pyproject.toml | grep langflow-base
- name: Create Release
uses: ncipollo/release-action@v1
with:

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "langflow"
version = "1.0.0a7"
version = "1.0.0a8"
description = "A Python package with a built-in web application"
authors = ["Logspace <contact@logspace.ai>"]
maintainers = [
@ -26,7 +26,7 @@ langflow = "langflow.__main__:main"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
langflow-base = "^0.0.19"
langflow-base = { path = ./src/backend/base, develop = true }
beautifulsoup4 = "^4.12.2"
google-search-results = "^2.4.1"
google-api-python-client = "^2.118.0"