Skip to content

chore(ui): migrate radio- and withDeprecationWarning components to Ty… #66

chore(ui): migrate radio- and withDeprecationWarning components to Ty…

chore(ui): migrate radio- and withDeprecationWarning components to Ty… #66

Workflow file for this run

name: Release
on:
push:
branches:
- main
env:
HUSKY: 0
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
pull-requests: write
jobs:
release:
name: Release
runs-on: [default]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install Dependencies
run: npm ci
- name: Create Release Pull Request or Publish to npm
id: changesets
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: npm run release
title: "publish(npm): automate Package Versioning and Publishing with Changesets"
commit: "chore(version): update versions with Changesets"
env:
GITHUB_TOKEN: ${{ secrets.CHANGESET_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}