diff --git a/build.gradle b/build.gradle index dc8f251..d5d8a05 100644 --- a/build.gradle +++ b/build.gradle @@ -93,5 +93,13 @@ publishing { // Notice: This block does NOT have the same function as the block in the top level. // The repositories here will be used for publishing your artifact, not for // retrieving dependencies. + maven { + name = "GitHubPackages" + url = "https://maven.pkg.github.com/ArduFish123/fish-lib" + credentials { + username = System.getenv("GITHUB_ACTOR") + password = System.getenv("GITHUB_TOKEN") + } + } } }