diff --git a/.drone.yml b/.drone.yml index e2fbd8a..5c5c74b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -42,11 +42,10 @@ steps: image: python:3.10 commands: - make dist - - pip3 install pipenv - - pipenv install - - pipenv sync - - pipenv install twine - - pipenv run twine upload --repository delugeClient-kevin dist/* + - pip3 install -r requirements.txt + - pip3 install twine + - twine check dist/* + - twine upload --repository delugeClient-kevin dist/* - name: PyPi publish image: python:3.10