Skip to content

Commit

Permalink
Fix typos and rephrase README
Browse files Browse the repository at this point in the history
PR #12 by @hugovk
  • Loading branch information
webknjaz authored Sep 16, 2019
2 parents 0f45ea9 + 881f004 commit ccc58ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`)


Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion twine-upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ccc58ba

Please sign in to comment.