| name: Publish mem0-cli π distributions π¦ to PyPI | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| build-n-publish: | |
| name: Build and publish mem0-cli π¦ to PyPI | |
| if: startsWith(github.event.release.tag_name, 'cli-v') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| defaults: | |
| run: | |
| working-directory: cli/python | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install Hatch | |
| run: pip install hatch | |
| - name: Build a binary wheel and a source tarball | |
| run: hatch build --clean | |
| - name: Publish distribution π¦ to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| packages-dir: cli/python/dist/ | |