Memory MCP Server

name: Publish to PyPI on: release: types: [created] jobs: deploy: runs-on: ubuntu-latest environment: name: pypi url: https://pypi.org/p/memory-mcp-server permissions: id-token: write # IMPORTANT: mandatory for trusted publishing steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 with: python-version: '3.x' - name: Install build dependencies run: | python -m pip install --upgrade pip pip install build - name: Build package run: python -m build - name: Publish package uses: pypa/gh-action-pypi-publish@release/v1