Skip to content

CI: Fixed Deployment Python Version #13

CI: Fixed Deployment Python Version

CI: Fixed Deployment Python Version #13

Workflow file for this run

name: 🚀 Deploy to PyPI
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Build wheel and source tarball
run: |
python -m pip install --upgrade pip
pip install build
python -m build
- name: Publish a Python distribution to PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}