Skip to content

Commit a32d5d7

Browse files
authored
fix again env variables
1 parent a4d998e commit a32d5d7

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/sonarqube.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,14 @@ jobs:
4747
base64 -d keystore-b64.txt > keystore/keystore.jks
4848
4949
- name: Ensure gradlew execute flags
50-
env:
51-
RELEASE_KEYSTORE_PASSWORD: ${{ secrets.RELEASE_KEYSTORE_PASSWORD }}
52-
RELEASE_KEYSTORE_ALIAS: ${{ secrets.RELEASE_KEYSTORE_ALIAS }}
53-
RELEASE_KEY_PASSWORD: ${{ secrets.RELEASE_KEY_PASSWORD }}
5450
run: |
5551
chmod +x ./gradlew
5652
5753
- name: Build and analyze
5854
env:
55+
RELEASE_KEYSTORE_PASSWORD: ${{ secrets.RELEASE_KEYSTORE_PASSWORD }}
56+
RELEASE_KEYSTORE_ALIAS: ${{ secrets.RELEASE_KEYSTORE_ALIAS }}
57+
RELEASE_KEY_PASSWORD: ${{ secrets.RELEASE_KEY_PASSWORD }}
5958
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
6059
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
6160
run: ./gradlew build sonar --info

0 commit comments

Comments
 (0)