Deploy to Devsoap Code
This commit is contained in:
parent
1f512053cf
commit
87e82820cf
|
@ -9,6 +9,7 @@ env:
|
||||||
ORG_GRADLE_PROJECT_DEVSOAP_GPG_KEY_BASE64: ${{ secrets.DEVSOAP_GPG_KEY_BASE64 }}
|
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_DEVSOAP_GPG_PASSWORD: ${{ secrets.DEVSOAP_GPG_PASSWORD }}
|
||||||
ORG_GRADLE_PROJECT_SONATYPE_TOKEN: ${{ secrets.SONATYPE_TOKEN }}
|
ORG_GRADLE_PROJECT_SONATYPE_TOKEN: ${{ secrets.SONATYPE_TOKEN }}
|
||||||
|
ORG_GRADLE_PROJECT_DEVSOAP_DEPLOY_TOKEN: ${{ secrets.DEVSOAP_DEPLOY_TOKEN }}
|
||||||
RUNNER_TOOL_CACHE: /toolcache
|
RUNNER_TOOL_CACHE: /toolcache
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -38,5 +39,7 @@ jobs:
|
||||||
${{ runner.os }}-
|
${{ runner.os }}-
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: ./gradlew --info --stacktrace test
|
run: ./gradlew --info --stacktrace test
|
||||||
|
- name: Upload to Devsoap Code
|
||||||
|
run: ./gradlew publishMavenJavaPublicationToDSCodeRepository
|
||||||
- name: Upload to Maven Central
|
- name: Upload to Maven Central
|
||||||
run: ./gradlew publishToMavenCentral
|
run: ./gradlew publishToMavenCentral
|
|
@ -34,6 +34,7 @@ java {
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven { url "https://code.devsoap.com/api/packages/john/maven" }
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
|
@ -32,6 +32,7 @@ buildscript {
|
||||||
ext {
|
ext {
|
||||||
hasSignatureKey = findProperty("DEVSOAP_GPG_KEY_BASE64") != null
|
hasSignatureKey = findProperty("DEVSOAP_GPG_KEY_BASE64") != null
|
||||||
sonatypeToken = findProperty("SONATYPE_TOKEN") as String
|
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)
|
signingKeyBase64 = (findProperty("DEVSOAP_GPG_KEY_BASE64") as String)?.getBytes(StandardCharsets.UTF_8)
|
||||||
signingKey = hasSignatureKey ? new String(Base64.decoder.decode(signingKeyBase64)) : ""
|
signingKey = hasSignatureKey ? new String(Base64.decoder.decode(signingKeyBase64)) : ""
|
||||||
signingPassword = hasSignatureKey ? findProperty("DEVSOAP_GPG_PASSWORD") : ""
|
signingPassword = hasSignatureKey ? findProperty("DEVSOAP_GPG_PASSWORD") : ""
|
||||||
|
@ -44,6 +45,19 @@ signing {
|
||||||
}
|
}
|
||||||
|
|
||||||
publishing {
|
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 {
|
publications {
|
||||||
mavenJava(MavenPublication) {
|
mavenJava(MavenPublication) {
|
||||||
from components.java
|
from components.java
|
||||||
|
|
Loading…
Reference in New Issue