From 120d300b07b68353bf629c124086bcaa13b961c8 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Thu, 24 Nov 2022 23:49:18 +0100 Subject: [PATCH] Install python dependencies before publish --- .drone.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index ade9602..e2fbd8a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -43,6 +43,8 @@ steps: commands: - make dist - pip3 install pipenv + - pipenv install + - pipenv sync - pipenv install twine - pipenv run twine upload --repository delugeClient-kevin dist/* @@ -51,8 +53,10 @@ steps: commands: - make dist - pip3 install pipenv + - pipenv install + - pipenv sync - pipenv install twine # - pipenv run twine upload dist/* depends_on: - - Build and test amd64 \ No newline at end of file + - Build and test amd64