Skip to content

Update version and add author information to pyproject.toml #12

Update version and add author information to pyproject.toml

Update version and add author information to pyproject.toml #12

Workflow file for this run

name: Build and Upload Python Package
on:
push:
tags:
- '*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Download twine
run: |
python -m pip install --upgrade twine
- name: Publish package
run: |
python3 -m twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}