From 4e6049c78c472b9f75cae575ad067d2ba2db4a24 Mon Sep 17 00:00:00 2001 From: Robert Sachunsky <38561704+bertsky@users.noreply.github.com> Date: Mon, 10 Jan 2022 13:56:08 +0100 Subject: [PATCH] add upload to PyPI :crossed_fingers: --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4c6685f..830ce4d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,12 +29,12 @@ jobs: - checkout - setup_remote_docker - run: make install - - run: python setup.py sdist - - run: pip wheel -w dist . + - run: python setup.py sdist bdist_wheel - store_artifacts: path: dist/ destination: artifacts - # later: upload to PyPI... + - run: pip install twine + - run: twine upload dist/* workflows: version: 2