diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 6b12359f..beb58fb1 100644 --- a/.github/workflows/gradle.yml +++ b/.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