Skip to content

rename dir for better clarification #19

rename dir for better clarification

rename dir for better clarification #19

Workflow file for this run

# This workflows will upload a Python Package using Twine when a release is published
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: Upload Python Package
on:
push:
branches:
- main
jobs:
deploy:
name: Build and Publish to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Build source and wheel distributions
run: make build
- name: Publish to PyPi
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{secrets.PYPI_TOKEN}}