Skip to content

Merge branch 'main' of github.com:rafaljanicki/x-twitter-mcp-server #13

Merge branch 'main' of github.com:rafaljanicki/x-twitter-mcp-server

Merge branch 'main' of github.com:rafaljanicki/x-twitter-mcp-server #13

Workflow file for this run

name: Deploy to PyPI
on:
push:
tags:
- 'v*'
jobs:
deploy:
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.13'
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Build package
run: uv build
- name: Publish to PyPI
run: uv publish --token ${{ secrets.PYPI_API_TOKEN }}