Fix pypa org refs in README

This commit is contained in:
Sviatoslav Sydorenko 2019-08-23 13:20:45 +02:00 committed by GitHub
parent f9c30e0c30
commit bfe363c91d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ To use the action add the following step to your workflow file (e.g.:
```yml
- name: Publish a Python distribution to PyPI
uses: pypi/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}
@ -32,7 +32,7 @@ So the full step would look like:
```yml
- name: Publish package
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypi/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}