Browse Source

Setup github actions

Signed-off-by: weisj <weisj@arcor.de>
pull/15/head
weisj 5 years ago
parent
commit
21f396f8f2
  1. 2
      .github/workflows/gradle.yml
  2. 1
      build.gradle

2
.github/workflows/gradle.yml

@ -14,4 +14,4 @@ jobs:
with: with:
java-version: 1.11 java-version: 1.11
- name: Build with Gradle - name: Build with Gradle
run: ./gradlew build -PdeployRepoUrl=${{ secrets.deployRepoUrl }} -PdeployRepoUsername=${{ secrets.deployRepoUsername }} -PdeployRepoPassword=${{ secrets.deployRepoPassword }} -PsigningKeyId=${{ secrets.SIGNING_KEY_ID }} -PsigningPassword=${{ secrets.SIGNING_PASSWORD }} -PsigningKey=${{ secrets.SIGNING_KEY }} run: ./gradlew build -PdeployRepoUrl=${{secrets.deployRepoUrl}} -PdeployRepoUsername=${{secrets.deployRepoUsername}} -PdeployRepoPassword=${{secrets.deployRepoPassword}} -PsigningKeyId=${{secrets.SIGNING_KEY_ID}} -PsigningPassword=${{secrets.SIGNING_PASSWORD}} -PsigningKey=${{secrets.SIGNING_KEY}}

1
build.gradle

@ -153,7 +153,6 @@ model {
println "Building on OS: " + System.properties['os.name'] println "Building on OS: " + System.properties['os.name']
println "Using JDK: " + System.properties['java.home'] println "Using JDK: " + System.properties['java.home']
println signingKey.replaceAll("#", "\n")
compileJava { compileJava {
sourceCompatibility = 8 sourceCompatibility = 8

Loading…
Cancel
Save