Deploy to Devsoap Code

This commit is contained in:
John Ahlroos 2024-11-15 20:19:56 +01:00
parent 1f512053cf
commit 87e82820cf
Signed by: john
GPG Key ID: 258D0F70DB84CD5D
3 changed files with 18 additions and 0 deletions

View File

@ -9,6 +9,7 @@ env:
ORG_GRADLE_PROJECT_DEVSOAP_GPG_KEY_BASE64: ${{ secrets.DEVSOAP_GPG_KEY_BASE64 }}
ORG_GRADLE_PROJECT_DEVSOAP_GPG_PASSWORD: ${{ secrets.DEVSOAP_GPG_PASSWORD }}
ORG_GRADLE_PROJECT_SONATYPE_TOKEN: ${{ secrets.SONATYPE_TOKEN }}
ORG_GRADLE_PROJECT_DEVSOAP_DEPLOY_TOKEN: ${{ secrets.DEVSOAP_DEPLOY_TOKEN }}
RUNNER_TOOL_CACHE: /toolcache
jobs:
@ -38,5 +39,7 @@ jobs:
${{ runner.os }}-
- name: Run tests
run: ./gradlew --info --stacktrace test
- name: Upload to Devsoap Code
run: ./gradlew publishMavenJavaPublicationToDSCodeRepository
- name: Upload to Maven Central
run: ./gradlew publishToMavenCentral

View File

@ -34,6 +34,7 @@ java {
repositories {
mavenCentral()
maven { url "https://code.devsoap.com/api/packages/john/maven" }
}
dependencies {

View File

@ -32,6 +32,7 @@ buildscript {
ext {
hasSignatureKey = findProperty("DEVSOAP_GPG_KEY_BASE64") != null
sonatypeToken = findProperty("SONATYPE_TOKEN") as String
devsoapToken = findProperty("DEVSOAP_DEPLOY_TOKEN") as String
signingKeyBase64 = (findProperty("DEVSOAP_GPG_KEY_BASE64") as String)?.getBytes(StandardCharsets.UTF_8)
signingKey = hasSignatureKey ? new String(Base64.decoder.decode(signingKeyBase64)) : ""
signingPassword = hasSignatureKey ? findProperty("DEVSOAP_GPG_PASSWORD") : ""
@ -44,6 +45,19 @@ signing {
}
publishing {
repositories {
maven {
name = "DSCode"
url = uri("https://code.devsoap.com/api/packages/john/maven")
credentials(HttpHeaderCredentials) {
name = "Authorization"
value = "token ${devsoapToken}"
}
authentication {
header(HttpHeaderAuthentication)
}
}
}
publications {
mavenJava(MavenPublication) {
from components.java