Skip to content

ci: add --stats-json to storybook build #196

ci: add --stats-json to storybook build

ci: add --stats-json to storybook build #196

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches:
- main
- next
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/gh-setup
- name: Create Release Pull Request or Publish to npm
# https://github.com/changesets/action
uses: changesets/action@v1
with:
# this expects you to have a script called release which does a build for your packages and calls changeset publish
publish: yarn publish
version: yarn version-packages
commit: 'chore: new release'
title: 'chore: new release candidate'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}