Skip to content

Commit 84b8a20

Browse files
committed
updated and added environment variable setup
Signed-off-by: Gergely Brautigam <182850+Skarlso@users.noreply.github.com>
1 parent 0f8bd9b commit 84b8a20

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

intellij-plugin/build.gradle.kts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,22 @@ intellijPlatform {
4343
untilBuild = "251.*"
4444
}
4545
}
46+
47+
pluginVerification {
48+
ides {
49+
recommended()
50+
}
51+
}
52+
53+
signing {
54+
certificateChain = providers.environmentVariable("CERTIFICATE_CHAIN")
55+
privateKey = providers.environmentVariable("PRIVATE_KEY")
56+
password = providers.environmentVariable("PRIVATE_KEY_PASSWORD")
57+
}
58+
59+
publishing {
60+
token = providers.environmentVariable("PUBLISH_TOKEN")
61+
}
4662
}
4763

4864
tasks {

0 commit comments

Comments
 (0)