File tree Expand file tree Collapse file tree
buildSrc/src/main/kotlin/ru/nsk Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5757 run : bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
5858 env :
5959 JEKYLL_ENV : production
60- - name : Check for symlinks # GitHub doesn't allow symlinks
61- run : ls -lR docs/_site
6260 - name : Upload artifact
6361 uses : actions/upload-artifact@v4
6462 with :
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ plugins {
1414 * local.properties file structure sample:
1515 *
1616 * signing.gnupg.executable=gpg2
17- * signing.gnupg.keyName=AABBCCDD # last 8 digits of key ID (gpg2 --list-keys)
17+ * # last 8 digits of key ID (gpg2 --list-keys)
18+ * signing.gnupg.keyName=AABBCCDD
1819 * signing.gnupg.passphrase=secret1
1920 * mavenUsername=accountName
2021 * mavenPassword=secret2
@@ -93,7 +94,7 @@ publishing {
9394 }
9495}
9596
96- val executable = localProperties.getProperty(" signing.gnupg.executable" )
97+ val executable: String? = localProperties.getProperty(" signing.gnupg.executable" )
9798if (executable != null ) {
9899 ext.set(" signing.gnupg.executable" , executable)
99100
@@ -121,7 +122,7 @@ if (executable != null) {
121122 }
122123}
123124
124- // workaround for gradle warning about task order. should be removed with gradle 8
125+ // workaround for gradle error about task order.
125126val signingTasks = tasks.withType<Sign >()
126127tasks.withType<AbstractPublishToMaven >().configureEach {
127128 dependsOn(signingTasks)
Original file line number Diff line number Diff line change 11kotlin.code.style =official
22org.gradle.jvmargs =-Xmx1g
33org.jetbrains.dokka.experimental.gradle.pluginMode =V2Enabled
4+ org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn =true
You can’t perform that action at this time.
0 commit comments