Skip to content

Merge pull request #11 from teawon/fix/changeset #1

Merge pull request #11 from teawon/fix/changeset

Merge pull request #11 from teawon/fix/changeset #1

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
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
publish: npm run release
title: "🚀 Version Packages"
commit: "chore: version packages"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}