Skip to content

chore: version packages (#55) #85

chore: version packages (#55)

chore: version packages (#55) #85

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
release:
if: github.repository == 'toss/es-hangul'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build
- name: Type Check
run: yarn typecheck
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
title: 'chore: version packages'
commit: 'chore: version packages'
version: yarn changeset:version
publish: yarn changeset:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}