Skip to content

Commit

Permalink
Feat/build publish ci (#11)
Browse files Browse the repository at this point in the history
* feat(ci): add build-publish workflow

* add java distribution

* add username

* fix(build): build repo name

* add version number

* remove rootProject.name

* add rootProject.name

* missing "

* change username env

* minor changes

* change github token

* change token env name

* switch trigger to main
  • Loading branch information
dhommen committed Jan 19, 2024
1 parent fa9b94d commit cc86b32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,11 @@ subprojects {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/truzzt/edc-logging-house-client")
url = uri("https://maven.pkg.github.com/truzzt/mds-ap3")
version = "0.1.0"
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") as String? ?: System.getenv("TOKEN")
username = System.getenv("USERNAME")
password = System.getenv("TOKEN")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
rootProject.name = "edc-logging-house-client"
rootProject.name = "logging-house"

include(":logging-house-client")

0 comments on commit cc86b32

Please sign in to comment.