Skip to content

feat - fixing copy over (#477) #421

feat - fixing copy over (#477)

feat - fixing copy over (#477) #421

Workflow file for this run

name: Release
on:
push:
branches:
- master
- next
- main
jobs:
release:
runs-on: ubuntu-latest
if: github.repository == 'boyney123/eventcatalog'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
version: 18.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: yarn release -- --openssl-legacy-provider
env:
NODE_OPTIONS: --openssl-legacy-provider
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}