Twitter MCP Server

name: Publish to npm on: push: branches: - main workflow_dispatch: # Allows manual triggering permissions: contents: write jobs: publish: runs-on: ubuntu-latest steps: - name: Check out repository uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Node.js uses: actions/setup-node@v4 with: node-version: '18' registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: npm ci - name: Build project run: npm run build - name: Configure Git run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" # - name: Bump version # run: | # npm version patch -m "chore: bump version to %s [skip ci]" # git push # git push --tags - name: Publish to npm run: npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}