Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/release_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,10 @@ jobs:
- name: Build and push pip package
env:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_TEST_TOKEN }} # TODO: remove
# TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
export TUUN_VERSION=${GITHUB_REF#"refs/tags/v"}
export SUBMIT_TO_PYPI=1
HOME=$(pwd) python setup.py sdist bdist_wheel
ls -ltr dist/
# python -m twine upload dist/*
python -m twine upload --repository-url=https://test.pypi.org/legacy/ dist/* # TODO: remove
python -m twine upload dist/*