Skip to content

Commit

Permalink
Merge pull request #606 from julien-duponchelle/release-0.30.1
Browse files Browse the repository at this point in the history
release githubflow add
  • Loading branch information
sean-k1 committed Feb 5, 2024
2 parents add27b8 + 89d6243 commit 4b30880
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI

on: push

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a source tarball
run: >-
python3 -m
build
--sdist
--outdir dist/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
except ImportError:
from distutils.core import setup, Command

from pathlib import Path
import sys

tests_require = []
Expand Down Expand Up @@ -35,11 +36,13 @@ def run(self):


version = "0.30.1"
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name="mysql-replication",
version=version,
url="https://github.com/noplay/python-mysql-replication",
url="https://github.com/julien-duponchelle/python-mysql-replication",
author="Julien Duponchelle",
author_email="[email protected]",
description=("Pure Python Implementation of MySQL replication protocol "
Expand Down

0 comments on commit 4b30880

Please sign in to comment.