mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-29 01:37:51 +08:00
28 lines
1.5 KiB
Markdown
28 lines
1.5 KiB
Markdown
---
|
|
title: Publishing a Plugin
|
|
---
|
|
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
|
|
|
When your plugin is ready you can publish it to a plugin repository so that other users can install it.
|
|
You can choose to publish it on the [JetBrains Plugins Repository](https://plugins.jetbrains.com)
|
|
or a custom plugin repository.
|
|
|
|
### Publishing to the JetBrains Plugins Repository
|
|
To upload your plugin to the [JetBrains Plugins Repository](https://plugins.jetbrains.com),
|
|
you must login with your personal JetBrains Account.
|
|
|
|
**To get your JetBrains account**
|
|
|
|
1. Open the [JetBrains Account Center](https://account.jetbrains.com) and click **Create Account**.
|
|
2. Fill in all fields in the **Create JetBrains Account** form that opens and click **Register**.
|
|
|
|
**To upload your plugin to JetBrains Plugins Repository**
|
|
|
|
1. [Login to JetBrains Plugins Repository](https://plugins.jetbrains.com/author/me) with your personal JetBrains account.
|
|
2. On your Profile page that opens, click **Add new plugin**.
|
|
3. Fill in the **Add new plugin** form that opens and click the **Add the plugin** button to upload your plugin.
|
|
|
|
### Publishing a Plugin to an Custom Plugin Repository
|
|
If you plan to publish your plugin to a repository _other than_ the [JetBrains Plugins Repository](https://plugins.jetbrains.com),
|
|
please refer to the [Publishing to Custom Plugin Repositories](update_plugins_format.md) documentation.
|