summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-10-23 10:18:23 -0400
committerJason R. Coombs <jaraco@jaraco.com>2020-10-23 22:47:00 -0400
commit1311cecaad5e176eb7604a045d16dcd6c7353a45 (patch)
tree47b187805c76c990ceb19a27ae9d1969db71c80c
parentca9ad41aeb98be511d9451706a9e29dd5016df00 (diff)
downloadpytest-runner-1311cecaad5e176eb7604a045d16dcd6c7353a45.tar.gz
use add-github-secrets, which infers the secrets needed from the github workflow.
-rw-r--r--skeleton.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/skeleton.md b/skeleton.md
index 7c3956c..ec421c2 100644
--- a/skeleton.md
+++ b/skeleton.md
@@ -124,11 +124,9 @@ Features include:
In addition to running tests, an additional publish stage is configured to automatically release tagged commits to PyPI using [API tokens](https://pypi.org/help/#apitoken). The release process expects an authorized token to be configured with each Github project (or org) `PYPI_TOKEN` [secret](https://docs.github.com/en/free-pro-team@latest/actions/reference/encrypted-secrets). Example:
```
-pip-run -q setuptools jaraco.develop -- -m jaraco.develop.add-github-secret PYPI_TOKEN $TOKEN --project org/repo
+pip-run -q jaraco.develop -- -m jaraco.develop.add-github-secrets
```
-<!-- note setuptools is required due to a [bug in munch](https://github.com/Infinidat/munch/issues/67) -->
-
## Building Documentation
Documentation is automatically built by [Read the Docs](https://readthedocs.org) when the project is registered with it, by way of the .readthedocs.yml file. To test the docs build manually, a tox env may be invoked as `tox -e docs`. Both techniques rely on the dependencies declared in `setup.cfg/options.extras_require.docs`.