Skip to content

Version Packages (#809) #634

Version Packages (#809)

Version Packages (#809) #634

Workflow file for this run

name: Release
on:
push:
branches:
- master
- next
- main
jobs:
release:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
if: github.repository == 'event-catalog/eventcatalog'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@master
with:
publish: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}