Browse Source

Update gradle.yml

pull/15/head
Jannis Weis 5 years ago committed by GitHub
parent
commit
e99a02e7ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      .github/workflows/gradle.yml

14
.github/workflows/gradle.yml

@ -15,11 +15,11 @@ jobs:
java-version: 1.11
- name: Build with Gradle
env:
deployRepoUrl : ${{ secrets.deployRepoUrl }}
deployRepoUsername : ${{ secrets.deployRepoUsername }}
deployRepoPassword: ${{ secrets.deployRepoPassword }}
signingKey: ${{ secrets.SIGNING_KEY }}
signingKeyId: ${{ secrets.SIGNING_KEY_ID }}
signingPassword: ${{ secrets.SIGNING_PASSWORD }}
run: ./gradlew build -PdeployRepoUrl=$deployRepoUrl -PdeployRepoUsername=$deployRepoUsername -PdeployRepoPassword=$deployRepoPassword -PsigningKey=$signingKey -PsigningKeyId=$signingKeyId -PsigningPassword=$signingPassword
deployRepoUrlVar : ${{ secrets.deployRepoUrl }}
deployRepoUsernameVar : ${{ secrets.deployRepoUsername }}
deployRepoPasswordVar : ${{ secrets.deployRepoPassword }}
signingKeyVar : ${{ secrets.SIGNING_KEY }}
signingKeyIdVar : ${{ secrets.SIGNING_KEY_ID }}
signingPasswordVar : ${{ secrets.SIGNING_PASSWORD }}
run: ./gradlew build -PdeployRepoUrl=deployRepoUrlVar -PdeployRepoUsername=deployRepoUsernameVar -PdeployRepoPassword=deployRepoPasswordVar -PsigningKey=signingKeyVar -PsigningKeyId=signingKeyIdVar -PsigningPassword=signingPasswordVar

Loading…
Cancel
Save