File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 64
64
with :
65
65
# Generated from the `generateIdeVersionsList` task above.
66
66
ide-versions : build/intellij-platform-plugin-verifier-action-ide-versions-file.txt
67
+ # TODO(ChrisCarini) - This can be removed once https://youtrack.jetbrains.com/issue/MP-6711 is resolved.
68
+ # See below for details:
69
+ # - https://jetbrains-platform.slack.com/archives/C012S7PA8CQ/p1722334099316129?thread_ts=1719921236.855369&cid=C012S7PA8CQ
70
+ # - https://youtrack.jetbrains.com/issue/MP-6711/Plugin-Verifier-Muted-plugin-problems-show-up-in-the-standard-output-as-structure-warnings#focus=Comments-27-10232348.0-0
71
+ failure-levels : |
72
+ PLUGIN_STRUCTURE_WARNINGS
67
73
68
74
- name : Get log file path and print contents
69
75
run : |
Original file line number Diff line number Diff line change 57
57
- name : Publish Plugin
58
58
env :
59
59
PUBLISH_TOKEN : ${{ secrets.PUBLISH_TOKEN }}
60
+ CERTIFICATE_CHAIN : ${{ secrets.CERTIFICATE_CHAIN }}
61
+ PRIVATE_KEY : ${{ secrets.PRIVATE_KEY }}
62
+ PRIVATE_KEY_PASSWORD : ${{ secrets.PRIVATE_KEY_PASSWORD }}
60
63
run : ./gradlew publishPlugin
61
64
62
65
# Upload artifact as a release asset
Original file line number Diff line number Diff line change @@ -234,7 +234,8 @@ changelog {
234
234
tasks {
235
235
publishPlugin {
236
236
dependsOn(patchChangelog)
237
- enabled = shouldPublishPlugin && providers.provider { pluginRepositoryUrl }.getOrElse(" false" ) == " true"
237
+ logger.lifecycle(" Should Publish Plugin?: $shouldPublishPlugin " )
238
+ enabled = shouldPublishPlugin
238
239
}
239
240
240
241
printProductsReleases {
You can’t perform that action at this time.
0 commit comments