Skip to content

Revert component-type export #43

Revert component-type export

Revert component-type export #43

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
pull-requests: write
strategy:
matrix:
node-version: [22]
yarn-version: [latest]
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
registry-url: 'https://npm.pkg.github.com'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Typescript compile
run: yarn tsc
- name: Build packages
run: yarn build:all
- name: Create Release Pull Request or Publish to GitHub Packages
id: changesets
uses: changesets/action@v1
with:
title: Version Packages - plugins
version: yarn release:version
publish: yarn release:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}