From 101f4acc4044328bf9fc088a36abf80eb8cb843b Mon Sep 17 00:00:00 2001 From: Aaron Peddle Date: Fri, 27 Oct 2023 11:07:18 -0700 Subject: [PATCH] fix deploy script (#42) --- 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