File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -53,18 +53,15 @@ jobs:
5353 destinationPath : ' app'
5454 encodedString : ${{ secrets.SIGNINGKEY_BASE64 }}
5555
56- - name : Create temporary gradle.properties for signing
57- run : |
58- echo "signing.storeFile=app/mLauncher.jks" >> gradle.properties
59- echo "signing.storePassword=${{ secrets.KEY_STORE_PASSWORD }}" >> gradle.properties
60- echo "signing.keyAlias=${{ secrets.KEY_ALIAS }}" >> gradle.properties
61- echo "signing.keyPassword=${{ secrets.KEY_PASSWORD }}" >> gradle.properties
62-
63-
6456 - name : Build with Gradle
6557 run : ./gradlew clean assembleNightlyRelease --refresh-dependencies --no-daemon
6658 env :
6759 JAVA_TOOL_OPTIONS : " -Dhttps.protocols=TLSv1.2"
60+ KEY_STORE_FILE : ${{ steps.write_base64_file.outputs.filePath }}
61+ KEY_STORE_PASSWORD : ${{ secrets.KEY_STORE_PASSWORD }}
62+ KEY_ALIAS : ${{ secrets.KEY_ALIAS }}
63+ KEY_PASSWORD : ${{ secrets.KEY_PASSWORD }}
64+
6865
6966 - name : Extract Version
7067 id : extract_version
You can’t perform that action at this time.
0 commit comments