Release #26
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: Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: "Version to release (e.g., 1.0.0)" | |
| required: true | |
| type: string | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm | |
| id: pnpm-install | |
| - name: Setup Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| cache: "pnpm" | |
| registry-url: "https://registry.npmjs.org" | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Update Version | |
| working-directory: packages/event-tracker | |
| run: | | |
| git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
| git config --local user.name "github-actions[bot]" | |
| npm version ${{ github.event.inputs.version }} -m "Release v%s" | |
| git add package.json | |
| git commit -m "Release v${{ github.event.inputs.version }}" | |
| git tag v${{ github.event.inputs.version }} | |
| git push origin HEAD | |
| git push --tags | |
| - name: Run Tests | |
| working-directory: packages/event-tracker | |
| run: pnpm run ci:test | |
| - name: Build Package | |
| working-directory: packages/event-tracker | |
| run: pnpm run build | |
| - name: Create GitHub Release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh release create v${{ github.event.inputs.version }} \ | |
| --title "v${{ github.event.inputs.version }}" \ | |
| --generate-notes | |
| - name: Publish to npm | |
| working-directory: packages/event-tracker | |
| run: pnpm publish --no-git-checks | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |