File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,16 @@ if(System.env.BUILD_NUMBER != null && System.env.SERVICESTACKIDEA_PUBLISH_NIGHTL
1212 // Append build number to version for a new nightly build version to be published.
1313 version = " ${ version} .$System . env . BUILD_NUMBER "
1414}
15-
1615String jbToken;
16+ String publishChannel;
1717
1818if (properties. getProperty(" jetbrains.plugins.user" , null ) == null ) {
1919 properties. load(project. file(' ./local.properties' ). newDataInputStream())
2020}
2121jbToken = properties. getProperty(" jetbrains.plugins.token" );
22+ if (properties. getProperty(" jetbrains.plugins.publishChannel" , null ) != null ) {
23+ publishChannel = properties. getProperty(" jetbrains.plugins.publishChannel" );
24+ }
2225
2326intellij {
2427 version ' IC-14.1.4'
@@ -28,6 +31,6 @@ intellij {
2831
2932 publishPlugin {
3033 token jbToken
31- channels ' beta '
34+ channels publishChannel
3235 }
3336}
You can’t perform that action at this time.
0 commit comments