You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ This action assumes you use [poetry](https://python-poetry.org/) as your package
7
7
**This action is also supported on private GitHub actions runners**. If you do not use a custom runner, you may use the builtin functionality `GITHUB_TOKEN` with write permissions as the `ACCESS_TOKEN` as seen in the first example. See [https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow](https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow)
8
8
9
9
10
-
> :warning: We recommend you to use this workflow with the test pypi registry e.g. `REGISTRY: "https://test.pypi.org/simple/"` until you can confirm your workflow works as expected.
10
+
> :warning: We recommend you to use this workflow with the test PyPI registry e.g. `REGISTRY: "https://test.pypi.org/simple/"` until you can confirm your workflow works as expected.
11
11
12
12
## Process
13
13
@@ -36,7 +36,7 @@ Each example requires you to:
36
36
1. Create a workflow file e.g. `.github/workflows/publish.yml`
37
37
2. Create a new release and tag e.g. `1.0.0` and the action will be triggered and publishes your package
38
38
39
-
### publish.yaml to publish to public pypi
39
+
### publish.yaml to publish to public PyPI
40
40
41
41
- Requires GitHub secrets:
42
42
- `PYPI_PASSWORD` with a valid token
@@ -65,7 +65,7 @@ jobs:
65
65
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
66
66
```
67
67
68
-
### publish.yaml to publish to the test pypi
68
+
### publish.yaml to publish to the test PyPI
69
69
70
70
- Requires GitHub secrets:
71
71
- `PYPI_PASSWORD` with a valid token
@@ -92,10 +92,10 @@ jobs:
92
92
REGISTRY: "https://test.pypi.org/legacy/"
93
93
```
94
94
95
-
### publish.yaml to publish to a private pypi
95
+
### publish.yaml to publish to a private PyPI
96
96
97
97
- Requires GitHub secrets:
98
-
- `PYPI_USER` username for the pypi registry
98
+
- `PYPI_USER` username for the PyPI registry
99
99
- `PYPI_PASSWORD` with the password for the `PYPI_USER` user
100
100
- `ACCESS_TOKEN` access token with write access to the GitHub repository
0 commit comments