Skip to content

Commit f7758ac

Browse files
add main and experimental prereleases (#614)
1 parent 467172b commit f7758ac

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

.github/workflows/pre-release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ name: Pre-release
22

33
on:
44
pull_request:
5-
branches:
6-
- main
5+
branches: [main, experimental]
6+
paths:
7+
- packages/open-next/**
8+
push:
9+
branches: [main, experimental]
710
paths:
811
- packages/open-next/**
912

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ OpenNext aims to support all Next.js 14 features. Some features are work in prog
3636
- [x] Image optimization
3737
- [x] [NextAuth.js](https://next-auth.js.org)
3838
- [x] Running at edge
39-
- [x] [Almost no coldstart (*)](#coldstart)
39+
- [x] [Almost no coldstart (\*)](#coldstart)
4040

4141
## Who is using OpenNext?
4242

@@ -56,6 +56,20 @@ This will output A LOT of additional logs to the console. This also disable mini
5656

5757
You can read more about the configuration in the [docs](https://opennext.js.org/aws/config)
5858

59+
## Preleases
60+
61+
Besides the standard npm releases we also automatically publish prerelease packages on branch pushes (using [`pkg.pr.new`](https://github.com/stackblitz-labs/pkg.pr.new)):
62+
63+
- `https://pkg.pr.new/@opennextjs/aws@main`:
64+
Updated with every push to the `main` branch, this prerelease contains the most up to date yet (reasonably) stable version of the package.
65+
- `https://pkg.pr.new/@opennextjs/aws@experimental`
66+
Updated with every push to the `experimental` branch, this prerelease contains the latest experimental version of the package (containing features that we want to test/experiment on before committing to).
67+
68+
Which you can simply install directly with your package manager of choice, for example:
69+
70+
```bash
71+
npm i https://pkg.pr.new/@opennextjs/aws@main
72+
```
5973

6074
## Contribute
6175

0 commit comments

Comments
 (0)