Skip to content

Commit

Permalink
Use Git protocol instead of https
Browse files Browse the repository at this point in the history
  • Loading branch information
ursjoss committed Dec 11, 2024
1 parent a86196d commit 01255de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guide/guide.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ afterEvaluate {
val htmlJavadocOutputDir = dokkaOutputDir.resolve("javadocCollector")
val gitPassword = providers.environmentVariable("GRGIT_USER")
gitPublish {
repoUri.set("https://github.com/ursjoss/KRis.git")
repoUri.set("git@github.com:ursjoss/KRis.git")
branch.set("gh-pages")
contents {
project.tasks.findByName("createGuide")?.outputs?.files?.let {
Expand All @@ -82,7 +82,7 @@ afterEvaluate {
}
commitMessage.set("Publish guide for ${project.version}")

username = "ursjoss"
username = "git"
password = gitPassword
}
}

0 comments on commit 01255de

Please sign in to comment.