Skip to content

chore(rsc): release for react canary/experimental channel [not merge] #524

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
37 changes: 37 additions & 0 deletions .github/workflows/release-continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,40 @@ jobs:

- name: Publish
run: pnpm dlx [email protected] publish --pnpm --compact './packages/*' './packages/plugin-react-swc/dist'

nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- run: pnpm i
- run: pnpm build

# canary
- run: |
pnpm -C packages/plugin-rsc i react-server-dom-webpack@canary
pnpm i --no-frozen-lockfile
pnpm -C packages/plugin-rsc build
cp -rf packages/plugin-rsc packages/plugin-rsc-canary
sed -i 's#"name": "@vitejs/plugin-rsc"#"name": "@vitejs/plugin-rsc-canary"#' packages/plugin-rsc-canary/package.json

# experimental
- run: |
pnpm -C packages/plugin-rsc i react-server-dom-webpack@experimental
pnpm i --no-frozen-lockfile
pnpm -C packages/plugin-rsc build
cp -rf packages/plugin-rsc packages/plugin-rsc-experimental
sed -i 's#"name": "@vitejs/plugin-rsc"#"name": "@vitejs/plugin-rsc-experimental"#' packages/plugin-rsc-experimental/package.json

# strip prepack to avoid duplicate builds
- run: |
sed -i 's#"prepack"#"x-prepack"#' packages/plugin-rsc-canary/package.json
sed -i 's#"prepack"#"x-prepack"#' packages/plugin-rsc-experimental/package.json

- run: |
pnpx pkg-pr-new publish --comment=off \
packages/plugin-rsc-canary \
packages/plugin-rsc-experimental \
Loading