Skip to content

Commit

Permalink
chore: update build command
Browse files Browse the repository at this point in the history
  • Loading branch information
utkarsh-dixit committed Mar 20, 2024
1 parent d56f0e6 commit 510d4d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
sed -i "s/version = '.*'/version = '${{ env.PACKAGE_VERSION }}'/" setup.py
echo "Updated version in setup.py (core)"
fi
python setup.py sdist bdist_wheel
python -m build
echo "Installing package locally"
pip install -e .
cd ..
Expand All @@ -62,7 +62,7 @@ jobs:
sed -i "s/composio_core===.*/composio_core===${{ env.PACKAGE_VERSION }}/" requirements.txt
echo "Updated version in pyproject.toml and requirements.txt"
fi
python setup.py sdist bdist_wheel
python -m build
echo "Installing package locally"
cd ..
Expand All @@ -85,7 +85,7 @@ jobs:
sed -i "s/composio_langchain===.*/composio_langchain===${{ env.PACKAGE_VERSION }}/" requirements.txt
echo "Updated version in pyproject.toml and requirements.txt"
fi
python setup.py sdist bdist_wheel
python -m build
cd ..
- name: Publish package (Crew AI)
Expand Down

0 comments on commit 510d4d6

Please sign in to comment.