File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -175,12 +175,22 @@ jobs:
175
175
run : ./gradlew buildPlugin
176
176
177
177
# Publish the plugin to JetBrains Marketplace
178
- - name : Publish Plugin
178
+ - name : Publish EAP Plugin
179
+ env :
180
+ PUBLISH_TOKEN : ${{ secrets.JETBRAINS_PUBLISH_TOKEN }}
181
+ CERTIFICATE_CHAIN : ${{ secrets.JETBRAINS_CERTIFICATE_CHAIN }}
182
+ PRIVATE_KEY : ${{ secrets.JETBRAINS_PRIVATE_KEY }}
183
+ PRIVATE_KEY_PASSWORD : ${{ secrets.JETBRAINS_PRIVATE_KEY_PASSWORD }}
184
+ RELEASE_CHANNEL : eap
185
+ run : ./gradlew publishPlugin
186
+
187
+ - name : Publish Stable Plugin
179
188
env :
180
189
PUBLISH_TOKEN : ${{ secrets.JETBRAINS_PUBLISH_TOKEN }}
181
190
CERTIFICATE_CHAIN : ${{ secrets.JETBRAINS_CERTIFICATE_CHAIN }}
182
191
PRIVATE_KEY : ${{ secrets.JETBRAINS_PRIVATE_KEY }}
183
192
PRIVATE_KEY_PASSWORD : ${{ secrets.JETBRAINS_PRIVATE_KEY_PASSWORD }}
193
+ RELEASE_CHANNEL : default
184
194
run : ./gradlew publishPlugin
185
195
186
196
# Prepare plugin archive content for creating artifact
Original file line number Diff line number Diff line change @@ -143,6 +143,6 @@ tasks {
143
143
// The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
144
144
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
145
145
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
146
- channels.set(listOf (" eap " , " default " ))
146
+ channels.set(listOf (environment( " RELEASE_CHANNEL " ).getOrElse( " eap " ) ))
147
147
}
148
148
}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ pluginGroup = com.github.continuedev.continueintellijextension
4
4
pluginName = continue-intellij-extension
5
5
pluginRepositoryUrl = https://github.com/continuedev/continue
6
6
# SemVer format -> https://semver.org
7
- pluginVersion = 0.0.61
7
+ pluginVersion = 0.0.62
8
8
9
9
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
10
10
pluginSinceBuild = 223
You can’t perform that action at this time.
0 commit comments