From 0f45ea95d8799b1baa8a3d313a72c5f219591ac5 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sun, 15 Sep 2019 15:24:35 +0200 Subject: [PATCH] Rename a Test PyPI secret --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 53fccdc..87860f7 100644 --- a/README.md +++ b/README.md @@ -65,13 +65,17 @@ The later is possible if you use `setuptools_scm` package but you could also invent your own solution based on the distance to the latest tagged commit. +Please notice that you'll need to create another token for a +separate host and then [save it as a GitHub repo +secret][Creating & using secrets]. + The action invocation in this case would look like: ```yml - name: Publish package to Test PyPI uses: pypa/gh-action-pypi-publish@master with: user: __token__ - password: ${{ secrets.pypi_password }} + password: ${{ secrets.test_pypi_password }} repository_url: https://test.pypi.org/legacy/ ```