From b645b1f9d3842bd0147375656328fb89c2eecc83 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Fri, 6 Dec 2019 13:42:24 +0100 Subject: [PATCH] Use a regular PyPI in the custom dist dir example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ab84b8a..8250de5 100644 --- a/README.md +++ b/README.md @@ -93,11 +93,11 @@ to any directory of your liking. The action invocation would now look like: ```yml -- name: Publish package to TestPyPI +- name: Publish package to PyPI uses: pypa/gh-action-pypi-publish@master with: user: __token__ - password: ${{ secrets.test_pypi_password }} + password: ${{ secrets.pypi_password }} packages-dir: custom-dir/ ```