diff --git a/VERSION b/VERSION index 9084fa2f7..524cb5524 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.0 +1.1.1 diff --git a/build.gradle b/build.gradle index 268fafd3d..33073d593 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { } version = project.mod_version -group = project.maven_group +group = 'io.github.diamondstar_mods' // <-- update this to match your GitHub org/user base { archivesName = project.archives_base_name @@ -75,6 +75,13 @@ publishing { } } repositories { - // Add publishing targets here if needed + maven { + name = "GitHubPackages" + url = uri("https://maven.pkg.github.com/${System.getenv('GITHUB_REPOSITORY')}") + credentials { + username = System.getenv("USERNAME") + password = System.getenv("TOKEN") + } + } } } \ No newline at end of file