Skip to content

Commit

Permalink
Fixed twine's parameter in PIP action
Browse files Browse the repository at this point in the history
  • Loading branch information
mkcn committed Jan 15, 2022
1 parent 723634e commit 4498ee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/createReleasePIP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
cd $GITHUB_WORKSPACE/pip/
# TODO remove source
source build-env/bin/activate
python3 -m twine upload -u __token__ -p ${{ secrets.TEST_PYPI_API_TOKEN }} --repository "test.pypi.org" dist/*.whl
python3 -m twine upload -u __token__ -p ${{ secrets.TEST_PYPI_API_TOKEN }} --repository-url "test.pypi.org" dist/*.whl
- name: Install it from test.pypi.org
run: |
Expand Down

0 comments on commit 4498ee3

Please sign in to comment.