Skip to content

mysqlclient-pool v0.1.2 #3

mysqlclient-pool v0.1.2

mysqlclient-pool v0.1.2 #3

Workflow file for this run

name: Publish the Package to PyPI
on:
workflow_dispatch:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Building the Package
run: |
python -m pip install build
python -m build
- name: Publishing the Package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}