Skip to content

version_bumping

version_bumping #2

name: version_bumping
on:
workflow_dispatch: # Allows manual triggering of the workflow
jobs:
cd:
permissions:
id-token: write
contents: write
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Check-out repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Python Semantic Release to prepare release
id: release
uses: python-semantic-release/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
changelog: true
tag: true
commit: false