Prepare for publishing #22
Workflow file for this run
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: CI & Publish | |
| on: | |
| push: | |
| branches: [main, master] | |
| tags: | |
| - "v*" # publish when a tag starting with v is pushed (e.g., v1.0.0) | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: "22" | |
| cache: "yarn" | |
| - name: Install | |
| run: yarn install --immutable | |
| - name: Build | |
| run: yarn build | |
| publish: | |
| name: Publish to npm | |
| needs: build | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.ref, 'refs/tags/v') # ensure this only runs on tag pushes | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Node (with npm auth) | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: "22" | |
| cache: "yarn" | |
| registry-url: "https://registry.npmjs.org" | |
| always-auth: true | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Install | |
| run: yarn install --immutable | |
| - name: Build | |
| run: yarn build | |
| - name: Publish | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: npm publish --access public |