Skip to content

Commit

Permalink
fix: versions
Browse files Browse the repository at this point in the history
  • Loading branch information
utkarsh-dixit committed Mar 20, 2024
1 parent 96fc67a commit a27d03a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
cd langchain
pip install -e .
if [[ $GITHUB_REF == refs/tags/v* ]]; then
sed -i "s/version=.*/version='${{ env.PACKAGE_VERSION }}',/" setup.py
sed -i "s/version = '.*'/version = '${{ env.PACKAGE_VERSION }}'/" setup.py
sed -i "s/composio_core===.*/composio_core==='${{ env.PACKAGE_VERSION }}',/" pyproject.toml
sed -i "s/composio_core===.*/composio_core==='${{ env.PACKAGE_VERSION }}'/" requirements.txt
echo "Updated version in pyproject.toml and requirements.txt"
Expand All @@ -78,7 +78,7 @@ jobs:
run: |
cd crew_ai
if [[ $GITHUB_REF == refs/tags/v* ]]; then
sed -i "s/version=.*/version='${{ env.PACKAGE_VERSION }}',/" setup.py
sed -i "s/version = '.*'/version = '${{ env.PACKAGE_VERSION }}'/" setup.py
sed -i "s/composio_core===.*/composio_langchain==='${{ env.PACKAGE_VERSION }}',/" pyproject.toml
sed -i "s/composio_core===.*/composio_langchain==='${{ env.PACKAGE_VERSION }}'/" requirements.txt
echo "Updated version in pyproject.toml and requirements.txt"
Expand Down

0 comments on commit a27d03a

Please sign in to comment.