Skip to content

microEye v2.4.0a3

microEye v2.4.0a3 #23

Workflow file for this run

name: Publish Python Package
on:
push:
tags:
- "v*" # Triggers on version tags (e.g., v1.0, v1.1, v2.0)
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9.13" # Specify your Python version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: |
python -m build --sdist --wheel .
- name: Publish package to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python -m twine upload -r pypi dist/*