Skip to content

Commit

Permalink
fix: adjusted maven conf.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael-goetz committed Dec 3, 2024
1 parent 61f5b3f commit 2a00970
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ publishing {
repositories {
maven {
name = 'GitHubPackages'
url = 'https://maven.pkg.github.com/yourusername/your-repo'
url = 'https://maven.pkg.github.com/raphael-goetz/astralis'
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
Expand All @@ -97,5 +97,10 @@ publishing {
}

signing {
useInMemoryPGPKeys(
System.getenv('SIGNING_KEY_ID'),
System.getenv('SIGNING_PRIVATE_KEY'),
System.getenv('SIGNING_PASSWORD')
)
sign publishing.publications.mavenJava
}

0 comments on commit 2a00970

Please sign in to comment.