Skip to content
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.

add @changesets/changelog-github (#4) #4

add @changesets/changelog-github (#4)

add @changesets/changelog-github (#4) #4

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@v3
- uses: pnpm/action-setup@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install deps
run: pnpm install --child-concurrency 3 --frozen-lockfile --prefer-offline
- name: Create Release Pull Request
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}