Skip to content

Commit

Permalink
Merge pull request #29 from modelcontextprotocol/justin/publish-packs
Browse files Browse the repository at this point in the history
Automatically publish `npm pack` to GH Releases
  • Loading branch information
jspahrsummers authored Oct 29, 2024
2 parents f0ac5af + 8e07474 commit 55d8aaf
Showing 1 changed file with 30 additions and 5 deletions.
35 changes: 30 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ on:
push:
branches:
- main

pull_request:
release:
types: [created]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
Expand All @@ -18,9 +23,29 @@ jobs:

- run: npm ci
- run: npm run build

- name: Verify that `npm run build` did not change outputs
run: git diff --exit-code

- run: npm test
- run: npm run lint

package:
runs-on: ubuntu-latest
if: github.event_name == 'release'
needs: build

permissions:
contents: write

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm

- run: npm ci
- run: npm pack

- name: Upload package to release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload ${{ github.event.release.tag_name }} ./*.tgz

0 comments on commit 55d8aaf

Please sign in to comment.