Skip to content

Bump version: 0.5.1rc1 → 0.6.0 #7

Bump version: 0.5.1rc1 → 0.6.0

Bump version: 0.5.1rc1 → 0.6.0 #7

Workflow file for this run

name: Deploy-To-Pypi
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
python-version: [3.14]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Setup Packaging Tools
run: |
pip install -U build pip twine
- name: Upload to pypi
env:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
run: |
python -m build
twine upload -u __token__ -p $PYPI_API_TOKEN dist/*