From fa59acfd032c501c3bb65f9a5c7a67db12511398 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Thu, 24 Nov 2022 23:58:12 +0100 Subject: [PATCH] Twince check command before upload --- .drone.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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