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

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/*
```