Skip to content

Commit

Permalink
Also release to GitHub packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Virtlink committed May 28, 2024
1 parent efcc088 commit a4ede2b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,14 @@ publishing {
password = project.findProperty("publish.repository.metaborg.artifacts.password") as String? ?: System.getenv("METABORG_ARTIFACTS_PASSWORD")
}
}
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/metaborg/gitonium")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.publishKey") as String? ?: System.getenv("GITHUB_TOKEN")
}
}
}
}

Expand Down

0 comments on commit a4ede2b

Please sign in to comment.