mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-09 10:23:35 -05:00
Fix pypa org refs in README
This commit is contained in:
parent
f9c30e0c30
commit
bfe363c91d
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ To use the action add the following step to your workflow file (e.g.:
|
||||||
|
|
||||||
```yml
|
```yml
|
||||||
- name: Publish a Python distribution to PyPI
|
- name: Publish a Python distribution to PyPI
|
||||||
uses: pypi/gh-action-pypi-publish@master
|
uses: pypa/gh-action-pypi-publish@master
|
||||||
with:
|
with:
|
||||||
user: __token__
|
user: __token__
|
||||||
password: ${{ secrets.pypi_password }}
|
password: ${{ secrets.pypi_password }}
|
||||||
|
@ -32,7 +32,7 @@ So the full step would look like:
|
||||||
```yml
|
```yml
|
||||||
- name: Publish package
|
- name: Publish package
|
||||||
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
|
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:
|
with:
|
||||||
user: __token__
|
user: __token__
|
||||||
password: ${{ secrets.pypi_password }}
|
password: ${{ secrets.pypi_password }}
|
||||||
|
|
Loading…
Reference in a new issue