chore(deps): update nextjs monorepo to v14.2.16 #1133
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
permissions: | |
id-token: write | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# Do not persist credentials so changesets can use the provided token | |
persist-credentials: false | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run Changesets | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
publish: pnpm changesets-release | |
version: pnpm changesets-version | |
title: Packages ready to publish | |
commit: Publish new versions | |
env: | |
GITHUB_TOKEN: ${{ secrets.CHANGESETS_TOKEN }} | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} |