From 3ebf00b51aa4f1637308a114aa0752fc280baaf0 Mon Sep 17 00:00:00 2001 From: antejavor Date: Mon, 23 Jun 2025 20:12:19 +0200 Subject: [PATCH 1/2] Init release action --- .github/workflows/release.yaml | 47 ++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..15463c0 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,47 @@ +name: Manual Release + +on: + workflow_dispatch: + +jobs: + release: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: 3.11.0 + + - name: Install uv + run: python -m pip install uv + + - name: Build and release memgraph-toolbox + working-directory: memgraph-toolbox + env: + UV_PUBLISH_USERNAME: ${{ secrets.PYPI_USERNAME }} + UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }} + run: | + uv build + uv publish + + - name: Build and release mcp-memgraph + working-directory: integrations/mcp-memgraph + env: + UV_PUBLISH_USERNAME: ${{ secrets.PYPI_USERNAME }} + UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }} + run: | + uv build + uv publish + + - name: Build and release langchain-memgraph + working-directory: integrations/langchain-memgraph + env: + UV_PUBLISH_USERNAME: ${{ secrets.PYPI_USERNAME }} + UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }} + run: | + uv build + uv publish From 25903e0e1dccbb5177ea99bea7704eec9eb08613 Mon Sep 17 00:00:00 2001 From: antejavor Date: Tue, 1 Jul 2025 14:39:13 +0200 Subject: [PATCH 2/2] Update name. --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 15463c0..83e7bec 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,4 +1,4 @@ -name: Manual Release +name: Manual Release of Memgraph AI toolkit packages on: workflow_dispatch: