diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 151fd97..b115ff2 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -1,10 +1,8 @@ name: Publish on: - push: - tags: - # Publish on any tag starting with a `v`, e.g., v0.1.0 - - v* + release: + types: [published] permissions: contents: read diff --git a/pyproject.toml b/pyproject.toml index be05467..7b4ea26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,11 @@ build-backend = "setuptools.build_meta" [project] name = "git-sync-filtered" -version = "0.1.2" +version = "0.1.3" description = "Sync filtered commits from private to public repository" readme = "README.md" requires-python = ">=3.10" license = { text = "MIT" } -authors = [{ name = "Your Name", email = "you@example.com" }] keywords = ["git", "filter", "sync", "repo"] classifiers = [ "Development Status :: 3 - Alpha", @@ -19,6 +18,8 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] dependencies = ["click>=8.0", "gitpython>=3.1", "git-filter-repo>=2.0"] diff --git a/uv.lock b/uv.lock index a2015e9..52fe753 100644 --- a/uv.lock +++ b/uv.lock @@ -46,7 +46,7 @@ wheels = [ [[package]] name = "git-sync-filtered" -version = "0.1.2" +version = "0.1.3" source = { editable = "." } dependencies = [ { name = "click" },