Update package versions and refactor build project for distribution (#1626)

* Update package versions in pyproject.toml

* Merge remote-tracking branch 'origin/dev' into new_release

* Refactor build project for distribution in pre-release workflows

* Merge remote-tracking branch 'origin/dev' into new_release
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-04-05 16:42:14 -03:00 committed by GitHub
commit 10ecc81f66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -31,8 +31,6 @@ jobs:
with:
python-version: "3.10"
cache: "poetry"
- name: Build project for distribution
run: make build base=true
- name: Check Version
id: check-version
# In this step, we should check the version of the package
@ -50,6 +48,8 @@ jobs:
else
echo version=$version >> $GITHUB_OUTPUT
fi
- name: Build project for distribution
run: make build base=true
- name: Publish to PyPI
env:

View file

@ -35,8 +35,6 @@ jobs:
with:
python-version: "3.10"
cache: "poetry"
- name: Build project for distribution
run: make build main=true
- name: Check Version
id: check-version
run: |
@ -48,6 +46,8 @@ jobs:
else
echo version=$version >> $GITHUB_OUTPUT
fi
- name: Build project for distribution
run: make build main=true
- name: Display pyproject.toml langflow-base Version
run: cat pyproject.toml | grep langflow-base
- name: Publish to PyPI