We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9804a7 commit 44563ffCopy full SHA for 44563ff
1 file changed
build.gradle.kts
@@ -13,9 +13,12 @@ tasks.jar {
13
14
publishing {
15
repositories {
16
- maven {
+ maven("https://maven.canvasmc.io/snapshots") {
17
name = "canvasmc"
18
- url = uri("https://maven.canvasmc.io/snapshots")
+ credentials {
19
+ username=System.getenv("PUBLISH_USER")
20
+ password=System.getenv("PUBLISH_TOKEN")
21
+ }
22
}
23
24
0 commit comments