-
Notifications
You must be signed in to change notification settings - Fork 118
42 lines (36 loc) · 1.05 KB
/
changesets.yml
File metadata and controls
42 lines (36 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Handle Changesets
on:
push:
branches:
- main
permissions:
id-token: write
contents: read
jobs:
release:
if: ${{ github.repository_owner == 'opennextjs' }}
name: Handle Changesets
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v6
with:
# See https://github.com/changesets/action/issues/187
token: ${{ secrets.GH_ACCESS_TOKEN }}
fetch-depth: 0
- name: Install Dependencies
uses: ./.github/actions/install-dependencies
with:
# Needs 24 to get a version of npm that can handle trusted publishers
# See https://docs.npmjs.com/trusted-publishers
node-version: 24
- name: Build Cloudflare package
run: pnpm run build
- name: Create Version PR or Publish to NPM
id: changesets
uses: changesets/action@v1
with:
publish: pnpm exec changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
NODE_ENV: "production"