Merge pull request #1267 from p12tic/release-docs

RELEASING: Add steps for uploading to Pypi
This commit is contained in:
Povilas Kanapickas 2025-07-07 17:30:09 +03:00 committed by GitHub
commit 036c0dcd18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 0 deletions

View File

@ -45,3 +45,19 @@ Step 5: Create a release on Github
The release notes must be added manually by drafting a release on the GitHub UI at
https://github.com/containers/podman-compose/releases.
Step 6: Upload to Pypi
----------------------
Run the following command to build artifacts:
```
rm -rf build dist
python3 -m build
```
Upload to Pypi
```
python3 -m twine upload dist/*
```