Files
7000pctAUTO 4543d84628
Some checks failed
CI / test (push) Has been cancelled
CI / lint (push) Has been cancelled
Lint / lint (push) Has been cancelled
Initial upload with CI/CD workflow
2026-01-31 11:08:02 +00:00

26 lines
503 B
YAML

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install build
- name: Build and publish
env:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
run: |
python -m build
twine upload dist/*