Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ Here are the steps to publish (we generally use CI for releases and avoid publis
<!-- 1. [Create release pull request](https://github.com/web-infra-dev/rslib/actions/workflows/release-pull-request.yml). -->

1. Run `pnpm generate-release-pr` to create a release pull request.
2. [Run the release action](https://github.com/web-infra-dev/rslib/actions/workflows/release.yml).
3. [Generate the release notes](https://github.com/web-infra-dev/rslib/releases).
4. Merge the release pull request.
2. [Run the release action on release branch](https://github.com/web-infra-dev/rslib/actions/workflows/release.yml).
3. Merge the release pull request.
4. [Create Git tag on main branch and generate the release notes](https://github.com/web-infra-dev/rslib/releases).

## Caveats

The project is still in its early stages and under active development, so it possible dependents on Rsbuild or Rspack canary versions to test the latest features. The current versions are:

| Package | Link |
| ------------ | ------------------------------------------------------------ |
| @rspack/core | https://github.com/web-infra-dev/rspack/releases/tag/v1.0.10 |
| @rspack/core | https://github.com/web-infra-dev/rspack/releases/tag/v1.0.14 |
2 changes: 1 addition & 1 deletion scripts/generateReleasePr.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async function main() {
console.log(chalk.blue(`Next version: ${nextVersion}`));

// 3. Create and switch to new branch
const branchName = `release-v${nextVersion}`;
const branchName = `release_v${nextVersion}`;
console.log(chalk.blue(`Creating branch: ${branchName}`));

await $`git checkout -b ${branchName}`;
Expand Down
Loading