Skip to content

chore: update pyproject.toml #12

chore: update pyproject.toml

chore: update pyproject.toml #12

Workflow file for this run

name: Create New Release
on:
workflow_dispatch: # Allows manual triggering of the workflow
push:
branches:
- main # Automatically trigger on push to main branch
jobs:
release:
name: Create Release
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install python-semantic-release
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Run semantic-release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SEMANTIC_RELEASE_LOG_LEVEL: verbose # Set verbose logging for debugging
run: |
semantic-release publish