Skip to content
This repository was archived by the owner on Feb 10, 2026. It is now read-only.

Merge pull request #121 from event-catalog/remove-default-index-page #124

Merge pull request #121 from event-catalog/remove-default-index-page

Merge pull request #121 from event-catalog/remove-default-index-page #124

Workflow file for this run

name: Release
on:
push:
branches:
- master
- next
- main
jobs:
release:
permissions:
contents: write
pull-requests: write
id-token: write
runs-on: ubuntu-latest
if: github.repository == 'event-catalog/create-eventcatalog'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 24.x
cache: 'pnpm'
- name: Install deps
run: pnpm i
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@master
with:
publish: pnpm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}