File tree Expand file tree Collapse file tree 1 file changed +16
-18
lines changed Expand file tree Collapse file tree 1 file changed +16
-18
lines changed Original file line number Diff line number Diff line change @@ -59,13 +59,24 @@ intellijPlatform {
5959 sinceBuild = " 241"
6060 }
6161 }
62+ publishing {
63+ token = environment(" PUBLISH_TOKEN" )
64+ hidden = true
65+ val channel = if (isEap) " eap" else " default"
66+ channels = listOf (channel)
67+ }
68+ signing {
69+ certificateChain = environment(" CERTIFICATE_CHAIN" )
70+ privateKey = environment(" PRIVATE_KEY" )
71+ password = environment(" PRIVATE_KEY_PASSWORD" )
72+ }
6273 pluginVerification {
6374 ides {
64- ide (" IC" , " 2025.2" )
65- ide (" IC" , " 2025.1" )
66- ide (" IC" , " 2024.3" )
67- ide (" IC" , " 2024.2" )
68- ide (" IC" , " 2024.1" )
75+ create (" IC" , " 2025.2" )
76+ create (" IC" , " 2025.1" )
77+ create (" IC" , " 2024.3" )
78+ create (" IC" , " 2024.2" )
79+ create (" IC" , " 2024.1" )
6980 }
7081 }
7182}
@@ -122,19 +133,6 @@ tasks {
122133 check(pluginDescription.get().isNotEmpty()) { " Plugin description section not found in README.md" }
123134 }
124135
125- signPlugin {
126- certificateChain = environment(" CERTIFICATE_CHAIN" )
127- privateKey = environment(" PRIVATE_KEY" )
128- password = environment(" PRIVATE_KEY_PASSWORD" )
129- }
130-
131- publishPlugin {
132- token = environment(" PUBLISH_TOKEN" )
133-
134- val channel = if (isEap) " eap" else " default"
135- channels = listOf (channel)
136- }
137-
138136 runIde {
139137 val openProject = " $projectDir /../../manual-testing-sandbox"
140138 argumentProviders + = CommandLineArgumentProvider {
You can’t perform that action at this time.
0 commit comments