Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
titivermeesch committed Jul 27, 2024
1 parent 83d4372 commit b143381
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions java17-build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,14 @@ publishing {
from components.java
}
}
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/titivermeesch/CommandTimer"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}
10 changes: 10 additions & 0 deletions java8-build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,14 @@ publishing {
from components.java
}
}
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/titivermeesch/CommandTimer"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}

0 comments on commit b143381

Please sign in to comment.