From 48e5b3bf3ea78efa8963437689478f211bcce965 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sat, 26 Nov 2022 12:58:18 +0100 Subject: [PATCH] Remove test pypi publish ci step --- .drone.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.drone.yml b/.drone.yml index f83ed99..038aa91 100644 --- a/.drone.yml +++ b/.drone.yml @@ -44,24 +44,12 @@ steps: - pip3 install delugeClient-kevin -q -q - bash publish_version?.sh - - name: Test PyPi publish - image: python:3.10 - commands: - - make 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 commands: - make dist - - pip3 install pipenv - - pipenv install - - pipenv sync - - pipenv install twine - # - pipenv run twine upload dist/* + - pip3 install twine + - twine upload dist/* depends_on: - Build and test amd64