chore: GitHub Packagesに公開できるように

This commit is contained in:
usbharu 2023-03-01 13:07:08 +09:00
parent bb64177b4a
commit 602f35b5e2
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
1 changed files with 14 additions and 0 deletions

View File

@ -66,3 +66,17 @@ android {
} }
} }
publishing{
repositories{
maven{
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/multim-dev/emoji-kt")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") as String? ?: System.getenv("TOKEN")
}
}
}
}