chore: Wizard/example/MCP niceties (#194) #128
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: "Publish" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| check-package-version: | |
| name: Check package version and detect an update | |
| runs-on: ubuntu-24.04 | |
| outputs: | |
| committed-version: ${{ steps.check-package-version.outputs.committed-version }} | |
| published-version: ${{ steps.check-package-version.outputs.published-version }} | |
| is-new-version: ${{ steps.check-package-version.outputs.is-new-version }} | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4 | |
| - name: Check package version and detect an update | |
| id: check-package-version | |
| uses: PostHog/check-package-version@v2 | |
| release: | |
| name: Publish release if new version | |
| runs-on: ubuntu-24.04 | |
| needs: check-package-version | |
| if: needs.check-package-version.outputs.is-new-version == 'true' | |
| env: | |
| COMMITTED_VERSION: ${{ needs.check-package-version.outputs.committed-version }} | |
| PUBLISHED_VERSION: ${{ needs.check-package-version.outputs.published-version }} | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Node 24 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| registry-url: https://registry.npmjs.org | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - name: Install package.json dependencies with pnpm | |
| run: pnpm install | |
| - name: Build the package | |
| run: pnpm build | |
| - name: Publish the package in the npm registry | |
| run: pnpm publish --access public |