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
+3-8Lines changed: 3 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -532,22 +532,17 @@ Follow the below steps.
532
532
Set `GH_TOKEN` env var to update the GitHub contents.
533
533
534
534
```bash
535
-
# Used to publish the package to pypi
536
-
uv pip install twine
537
-
538
535
rm -rf dist
539
536
# bumping the version, building a package and creating a tag.
540
537
uv run semantic-release version --patch|--minor|--major
541
538
542
-
# this 'release' script now has pushing built modules to pypi only.
543
-
./release.sh # and type the target version.
539
+
# To publish the version's module to pypi
540
+
UV_PUBLISH_TOKEN=<token to publish via pypi> uv publish
544
541
545
-
# to push built modules in 'dist' directory to the GH release page.
542
+
#To push built modules in 'dist' directory to the GH release page.
546
543
uv run semantic-release publish
547
544
```
548
545
549
-
If the `pypi` was not able to publish with user name and password, please try out `-u` and `-p` option by yourself with `twine` such as `twine upload -u <name> -p <pass> dist/Appium-Python-Client-4.1.0.tar.gz`.
0 commit comments