Skip to content

Add Next.js App Router to readme (#57) #82

Add Next.js App Router to readme (#57)

Add Next.js App Router to readme (#57) #82

Workflow file for this run

name: Release
on:
push:
branches:
- 'main'
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- 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
- uses: pnpm/[email protected]
with:
version: 7
- uses: actions/setup-node@v3
with:
node-version: 14
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Create release PR
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}