From b76c353226995253c93de100ca4ffc03df4b8baf Mon Sep 17 00:00:00 2001 From: long2ice Date: Fri, 3 Mar 2023 15:51:23 +0800 Subject: [PATCH] ci: add build --- .github/workflows/build.yml | 2 +- Makefile | 3 +++ pyproject.toml | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7c6c654..a703e09 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,4 +20,4 @@ jobs: uses: docker/build-push-action@v4 with: push: true - tags: long2ice/meilisync:latest + tags: long2ice/meilisync diff --git a/Makefile b/Makefile index 5499888..2f4000d 100644 --- a/Makefile +++ b/Makefile @@ -14,3 +14,6 @@ test: $(py_warn) pytest --suppress-no-test-exit-code ci: check test + +build: + @poetry build diff --git a/pyproject.toml b/pyproject.toml index c6b5067..7e15c77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,14 +4,14 @@ version = "0.1.0" description = "Realtime sync data from MySQL/PostgreSQL/MongoDB to meilisearch" authors = ["long2ice "] readme = "README.md" -documentation = "https://github.com/long2ice/meilisync" +documentation = "https://github.com/meilisync/meilisync" include = ["CHANGELOG.md", "LICENSE", "README.md"] keywords = ["meilisearch", "postgres", "mysql"] license = "Apache-2.0" packages = [ { include = "meilisync" }, ] -repository = "https://github.com/long2ice/meilisync.git" +repository = "https://github.com/meilisync/meilisync.git" [tool.poetry.dependencies] python = "^3.9"