Skip to content

Commit

Permalink
Merge pull request #27 from odigos-io/add-publishing-doc-section
Browse files Browse the repository at this point in the history
doc: add pusblish pypi package section
  • Loading branch information
blumamir authored Sep 16, 2024
2 parents 413be00 + 194fff9 commit 20c43c0
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,20 @@ requirements.txt e.g:
..
..
odigos-opentelemetry-python @ http://localhost:8080/packages/odigos_opentelemetry_python-0.1.1-py3-none-any.whl
```
```


## Publishing a New Version to PyPI
1. Ensure all changes are merged into the `main` branch.

2. Create a tag for the new version.
```bash
git tag <TAG>
```
3. Push the tag to the remote repository.
```bash
git push origin <TAG>
```
4. Let the [GitHub workflow](https://github.com/odigos-io/odigos-opentelemetry-python/blob/main/.github/workflows/publish.yaml) handle versioning and publishing to [odigos-opentelemetry-python on PyPI](https://pypi.org/project/odigos-opentelemetry-python/).


0 comments on commit 20c43c0

Please sign in to comment.