We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 684efde + 7a0dc3b commit a03fe7fCopy full SHA for a03fe7f
.github/workflows/python-publish.yml
@@ -9,8 +9,12 @@
9
name: Upload Python Package
10
11
on:
12
+ push:
13
+ tags:
14
+ - '*'
15
release:
16
types: [published]
17
+ workflow_dispatch:
18
19
permissions:
20
contents: read
README.md
@@ -19,3 +19,10 @@ r = Romanizer("안녕하세요")
r.romanize()
# returns 'annyeonghaseyo'
21
```
22
+
23
+## Releasing
24
25
+Publishing to PyPI is automated using GitHub Actions. Pushing a version tag or
26
+creating a GitHub release triggers the workflow in
27
+`.github/workflows/python-publish.yml` which builds and uploads the package using
28
+the `PYPI_API_TOKEN` secret.
0 commit comments