Skip to content

feat: API update based on an interface change and setting up auto PyP… #1

feat: API update based on an interface change and setting up auto PyP…

feat: API update based on an interface change and setting up auto PyP… #1

Workflow file for this run

name: Semantic Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Needed for full Git history
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine python-semantic-release
- name: Run Semantic Release
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: semantic-release publish