Skip to content

Create New Release

Create New Release #34

Workflow file for this run

name: Create New Release
on:
workflow_dispatch: # This ensures the workflow is only triggered manually
jobs:
release:
name: Create Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Python Semantic Release
uses: python-semantic-release/python-semantic-release@v9.12.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
commit: true
push: true
tag: true