Skip to content

Commit 53b1558

Browse files
Add summary publication on GitHub Packages (#275)
1 parent 86b3a51 commit 53b1558

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

utbot-summary/build.gradle

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,17 @@ dependencies {
1313
implementation group: 'io.github.microutils', name: 'kotlin-logging', version: kotlin_logging_version
1414

1515
implementation group: 'com.github.javaparser', name: 'javaparser-core', version: '3.22.1'
16-
}
16+
}
17+
18+
publishing {
19+
repositories {
20+
maven {
21+
name = "GitHubPackages"
22+
url = "https://maven.pkg.github.com/UnitTestBot/UTBotJava"
23+
credentials {
24+
username = System.getenv("GITHUB_ACTOR")
25+
password = System.getenv("GITHUB_TOKEN")
26+
}
27+
}
28+
}
29+
}

0 commit comments

Comments
 (0)