mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-21 16:11:01 -05:00
Typos and brevity
This commit is contained in:
parent
0f45ea95d8
commit
881f0049bd
2 changed files with 6 additions and 6 deletions
10
README.md
10
README.md
|
@ -6,7 +6,7 @@ PyPI.
|
|||
|
||||
## Usage
|
||||
|
||||
To use the action add the following step to your workflow file (e.g.:
|
||||
To use the action add the following step to your workflow file (e.g.
|
||||
`.github/workflows/main.yml`)
|
||||
|
||||
|
||||
|
@ -56,18 +56,18 @@ by putting them into the `dist/` folder prior to running this Action.
|
|||
|
||||
For best results, figure out what kind of workflow fits your
|
||||
project's specific needs.
|
||||
|
||||
For example, you could implement a parallel workflow that
|
||||
pushes every commit to Test PyPI or your own index server,
|
||||
like `devpi`. For this, you'd need to (1) specify a custom
|
||||
`repository_url` value and (2) generate a unique version
|
||||
number for each upload so that they'd not create a conflict.
|
||||
The later is possible if you use `setuptools_scm` package but
|
||||
The latter 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].
|
||||
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
|
||||
|
|
|
@ -23,7 +23,7 @@ if [[
|
|||
then
|
||||
>&2 echo \
|
||||
[WARNING]: \
|
||||
It looks like there is no Python distribution packages to \
|
||||
It looks like there are no Python distribution packages to \
|
||||
publish in the '"dist/"' directory. Please verify that they \
|
||||
are in place should you face this problem.
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue