Skip to content

chore: remove path config in workflow #1

chore: remove path config in workflow

chore: remove path config in workflow #1

name: Release ts-codegenerator
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install Dependencies
run: bun install
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
# The package is now at the root level, so we don't need to specify a subdirectory
publish: bun run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}