Back to Kilocode

Releasing the JetBrains Plugin

packages/kilo-jetbrains/RELEASING.md

7.3.185.5 KB
Original Source

Releasing the JetBrains Plugin

JetBrains releases are locked by an immediate jetbrains/v<version> tag, then gated by a reviewed release PR. The tag fixes the exact source code that will be published; the PR is where maintainers review and edit the version and changelog before publishing starts.

The published code comes from jetbrains/v<version>. Marketplace and GitHub release notes come from the reviewed changelog merged in the release PR.

Create Release Tag And PR

  1. Open the GitHub Actions workflow:

https://github.com/Kilo-Org/kilocode/actions/workflows/prepare-jetbrains-release.yml

  1. Click Run workflow. This immediately creates jetbrains/v<version> at the current origin/main commit, then creates or updates the release PR.

  2. Fill the inputs:

InputValue
kindrc for an EAP release, stable for a default Marketplace release.
versionx.y.z-rc.n for RCs, x.y.z for stable releases.
from_tagOptional previous tag for the changelog range. Leave empty unless the default range is wrong.

Examples:

text
kind=rc
version=7.3.13-rc.1
text
kind=stable
version=7.3.13

Changelog Range Defaults

The workflow chooses a changelog base automatically and generates notes against the locked release commit:

ReleaseDefault from_tag
First RC for a version, e.g. 7.3.13-rc.1Latest stable JetBrains tag.
Later RC, e.g. 7.3.13-rc.2Previous RC for the same base version.
Stable, e.g. 7.3.13Latest stable JetBrains tag, ignoring RCs.

Use from_tag only to override this comparison range. It does not change the release target commit.

For the first stable JetBrains release, there may be no previous stable tag yet. In that case, pass the last RC or another reviewed JetBrains tag as from_tag.

Review the PR

The workflow creates or updates a branch like:

text
jetbrains/release/v7.3.13-rc.1

The PR updates:

FilePurpose
packages/kilo-jetbrains/package.jsonJetBrains plugin package version.
packages/kilo-jetbrains/CHANGELOG.mdRelease notes packaged into the plugin.

Review and edit packages/kilo-jetbrains/CHANGELOG.md before merging. This changelog entry is rendered into JetBrains <change-notes>, so it appears on the Marketplace and inside IntelliJ plugin UI.

The PR can change release metadata such as packages/kilo-jetbrains/package.json and packages/kilo-jetbrains/CHANGELOG.md, but it does not change the tagged source code that will be built.

Merge and Publish

When the release PR is merged, the publish-jetbrains workflow validates the existing tag and release PR markers:

text
jetbrains/v<version>

Then it publishes from that tag:

https://github.com/Kilo-Org/kilocode/actions/workflows/publish-jetbrains.yml

Publishing behavior:

VersionMarketplace channelGitHub release
x.y.z-rc.neapPrerelease
x.y.zdefaultStable release

The workflow checks out jetbrains/v<version> for verification, signing, and Marketplace publishing. It overlays the reviewed packages/kilo-jetbrains/CHANGELOG.md from the merged PR before rendering release notes and before publishPlugin, so Marketplace metadata and the GitHub Release use the reviewed changelog.

Installing RC Builds

RC builds are published to the eap channel. To get them in IntelliJ IDEA:

  1. Open Settings > Plugins.
  2. Click the gear icon and choose Manage Plugin Repositories.
  3. Add the following URL:
text
https://plugins.jetbrains.com/plugins/list?channel=eap&pluginId=28350
  1. Search for Kilo Code in the Marketplace tab.

Manual Recovery

If the prepare workflow created the tag but failed before creating or updating the PR, rerun the workflow for the same version. It reuses the tag if it still points to the same locked commit.

If publish validation says the tag points to the wrong SHA, stop and inspect manually. Do not move, delete, or recreate release tags casually.

If publish failed after merge, rerun the failed publish-jetbrains workflow if the failure happened before Marketplace accepted the version. Marketplace may reject a duplicate version after a successful publish.

If Marketplace publishing succeeded but GitHub Release upload failed, manually create or edit the GitHub Release for the existing tag. Use the reviewed release notes from packages/kilo-jetbrains/CHANGELOG.md in the merged release PR.

If the immediate tag must be created manually because the prepare workflow could not push it, create it at the intended locked origin/main commit before merging the release PR:

bash
git fetch origin main
git tag jetbrains/v7.3.13 <locked-main-sha>
git push origin jetbrains/v7.3.13

Required GitHub Actions Secrets

SecretPurpose
KILO_MAINTAINER_APP_IDGitHub App ID used to create/update release PRs and immediate release tags.
KILO_MAINTAINER_APP_SECRETGitHub App private key used to create/update release PRs and immediate release tags.
JETBRAINS_MARKETPLACE_TOKENMarketplace API token for publishing.
JETBRAINS_CERTIFICATE_CHAINPEM certificate chain for plugin signing.
JETBRAINS_PRIVATE_KEYPEM private key for plugin signing.
JETBRAINS_PRIVATE_KEY_PASSWORDPassword for the private key.

Before the first publish, complete RELEASE_TODO.md to set up these secrets and the Marketplace plugin entry.