Skip to content

Commit

Permalink
chore: 🐛 upload issue with release script
Browse files Browse the repository at this point in the history
- the username with `-u` option didn't seem to work for some weird reason.
  • Loading branch information
abhiabhi94 committed Jun 17, 2021
1 parent 02a39af commit 3859aea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .scripts/release.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/bash
set -euxo pipefail
set -e

rm -rf dist build
python -m pip install -U pip
python -m pip install -U setuptools wheel twine
python setup.py sdist bdist_wheel
twine check dist/*
python -m twine upload -u __token__ dist/*
python -m twine upload dist/*

0 comments on commit 3859aea

Please sign in to comment.