Updated config.yml

This commit is contained in:
Krish Dholakia 2023-10-09 13:30:51 -07:00
parent c74e4a3920
commit 4900f11570

View file

@ -88,7 +88,7 @@ jobs:
PACKAGE_NAME=$(python -c "import toml; print(toml.load('pyproject.toml')['tool']['poetry']['name'])") PACKAGE_NAME=$(python -c "import toml; print(toml.load('pyproject.toml')['tool']['poetry']['name'])")
if ! pip show -v $PACKAGE_NAME | grep -q "Version: ${VERSION}"; then if ! pip show -v $PACKAGE_NAME | grep -q "Version: ${VERSION}"; then
echo "pyproject.toml modified" echo "pyproject.toml modified"
echo -e "[pypi]\nusername = ishaan-jaff\npassword = madeBerri@992" > ~/.pypirc echo -e "[pypi]\nusername = $PYPI_PUBLISH_USERNAME\npassword = $PYPI_PUBLISH_PASSWORD" > ~/.pypirc
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install build pip install build
pip install wheel pip install wheel