Skip to content

Commit 8d77a67

Browse files
committed
Try Check for symlinks
1 parent 7c7fb53 commit 8d77a67

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/pages.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ jobs:
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:

buildSrc/src/main/kotlin/ru/nsk/maven-publish.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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")
9798
if (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.
125126
val signingTasks = tasks.withType<Sign>()
126127
tasks.withType<AbstractPublishToMaven>().configureEach {
127128
dependsOn(signingTasks)

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
kotlin.code.style=official
22
org.gradle.jvmargs=-Xmx1g
33
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
4+
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true

0 commit comments

Comments
 (0)