Skip to content

add dist to package.json #8

add dist to package.json

add dist to package.json #8

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.0.25
- name: Install Dependencies
run: bun i
- name: Install pnpm
run: bun i -g pnpm
- name: Create Release Pull Request
uses: changesets/action@v1
with:
publish: pnpm publish --no-git-checks
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}