Skip to content

feat: implement structured JSON logging, telemetry metrics and extend… #13

feat: implement structured JSON logging, telemetry metrics and extend…

feat: implement structured JSON logging, telemetry metrics and extend… #13

Workflow file for this run

name: Semantic Release
on:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
concurrency: release
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: |
uv venv
uv pip install build
- name: Run Semantic Release
uses: python-semantic-release/python-semantic-release@v9.8.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}