From bfe363c91d1e53f3d5d351b22b2bce0f7e5b666b Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Fri, 23 Aug 2019 13:20:45 +0200 Subject: [PATCH] Fix pypa org refs in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index babea15..05c81cd 100644 --- a/README.md +++ b/README.md @@ -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 }}