From 4e168cf3ed64dca11e22eaa63015fa798fd753a0 Mon Sep 17 00:00:00 2001 From: nea Date: Fri, 14 Oct 2022 23:00:15 +0200 Subject: add publishing and drone pipeline --- .drone.yml | 9 +++++++++ build.gradle.kts | 10 +++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..c18bd7c --- /dev/null +++ b/.drone.yml @@ -0,0 +1,9 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: Build + image: eclipse-temurin:8-alpine + commands: + - ./gradlew build \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 2cf2eb9..d323f7a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -64,5 +64,13 @@ publishing { } } } - repositories { } + repositories { + maven("https://repo.nea.moe/releases") { + name = "neamoeReleases" + credentials(PasswordCredentials::class) + authentication { + create("basic") + } + } + } } -- cgit