From 77aaba3f24d22ca1b2edcaf453b3e7c1d23f043e Mon Sep 17 00:00:00 2001 From: Aaron Peddle Date: Thu, 26 Oct 2023 14:10:16 -0700 Subject: [PATCH] fix deploy script --- deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 deploy.sh diff --git a/deploy.sh b/deploy.sh old mode 100644 new mode 100755 index dbd9f48..f1bab19 --- a/deploy.sh +++ b/deploy.sh @@ -1,3 +1,3 @@ -!#/bin/bash +#! /bin/bash python3 setup.py sdist bdist_wheel -python3 -m twine upload dist/* --skip-existing +python3 -m twine upload dist/* --skip-existing -u $PYPI_USERNAME -p $PYPI_PASSWORD