From 3f53700db1e2354f572c1b1774b52467c4a89780 Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Fri, 22 Jan 2021 09:36:17 -0500 Subject: [PATCH] DOC: Do not use master in examples to be consistent with the "pro tip" --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3988570..bddddf7 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ To use the action add the following step to your workflow file (e.g. ```yml - name: Publish a Python distribution to PyPI - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} @@ -38,7 +38,7 @@ So the full step would look like: ```yml - name: Publish package if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} @@ -78,7 +78,7 @@ You'll need to create another token for a separate host and then The action invocation in this case would look like: ```yml - name: Publish package to TestPyPI - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@v1 with: user: __token__ password: ${{ secrets.TEST_PYPI_API_TOKEN }} @@ -93,7 +93,7 @@ would now look like: ```yml - name: Publish package to PyPI - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}