NPM - Promote beta to latest #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: NPM - Promote beta to latest | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| packageVersion: | |
| required: true | |
| type: string | |
| description: The version that should be promoted | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./mcp-server | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20.x" | |
| registry-url: "https://registry.npmjs.org" | |
| - run: npm ci | |
| - name: Publish to NPM | |
| run: | | |
| git config user.name "Currents NPM Bot" | |
| git config user.email "[email protected]" | |
| npm dist-tag add @currents/mcp@${{ github.event.inputs.packageVersion }} latest | |
| npm dist-tag rm @currents/mcp beta | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |