Skip to content

Merge pull request #32 from evalstate/mcp-hfspace #60

Merge pull request #32 from evalstate/mcp-hfspace

Merge pull request #32 from evalstate/mcp-hfspace #60

Workflow file for this run

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@v2
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v2
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 "[email protected]"
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 }}