Skip to content

chore: add both potential React syntaxes #24

chore: add both potential React syntaxes

chore: add both potential React syntaxes #24

Workflow file for this run

name: release
on:
push:
branches:
- "main"
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- name: Create Release Pull Request
uses: changesets/action@v1
with:
commit: "chore: version package(s)"
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: bun release
version: bun changeset version
title: "chore: version package(s)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}