Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-publish-to-pypi:
timeout-minutes: 8
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
python_version: "3.10"
poetry_version: "==2.0.1"
pypi_token: ${{ secrets.PYPI_API_TOKEN }}
4 changes: 2 additions & 2 deletions examples/hello-world-django/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ readme = "README.md"
python = "^3.11"
django = "^5.0.1"
hyperdx-opentelemetry = {path = "../../", develop = true}
opentelemetry-api = "1.27.0"
opentelemetry-instrumentation = "0.48b0"
opentelemetry-api = "1.30.0"
opentelemetry-instrumentation = "0.51b0"

[build-system]
requires = ["poetry-core"]
Expand Down
4 changes: 2 additions & 2 deletions examples/hello-world-flask/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ python = "^3.10"
flask = "2.2.5"
Werkzeug = "2.2.2"
hyperdx-opentelemetry = {path = "../../", develop = true}
opentelemetry-api = "1.27.0"
opentelemetry-instrumentation-flask = "0.48b0"
opentelemetry-api = "1.30.0"
opentelemetry-instrumentation-flask = "0.51b0"

[build-system]
requires = ["poetry-core"]
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
hyperdx-opentelemetry = {path = "../../", develop = true}
opentelemetry-api = "1.27.0"
opentelemetry-api = "1.30.0"

[build-system]
requires = ["poetry-core"]
Expand Down
Loading
Loading