File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7878 - name : Create local.properties
7979 run : |
8080 echo "signing.storeFile=signing/signing-key.jks" >> local.properties
81- echo "signing.storePassword=123456 " >> local.properties
81+ echo "signing.storePassword=${{ secrets.SIGNING_STORE_PASSWORD }} " >> local.properties
8282 echo "signing.keyAlias=android-ide" >> local.properties
83- echo "signing.keyPassword=123456" >> local.properties
84-
85- - name : Debug signing setup
86- run : |
87- echo "=== Repository structure ==="
88- find . -name "*.jks" -o -name "local.properties" | head -10
89- echo ""
90- echo "=== local.properties content ==="
91- cat local.properties || echo "local.properties not found"
92- echo ""
93- echo "=== SigningDirectory ==="
94- ls -la core/app/signing/ || echo "core/app/signing directory not found"
83+ echo "signing.keyPassword=${{ secrets.SIGNING_KEY_PASSWORD }}" >> local.properties
9584
9685 - name : Assemble APK
9786 run : ./gradlew assemble${{ env.BUILD_TYPE }}
You can’t perform that action at this time.
0 commit comments