restore signing configs

This commit is contained in:
dyhkwong 2024-09-08 22:45:58 +08:00
parent 1f8841c3bf
commit 08bd3903e4
3 changed files with 2 additions and 4 deletions

View file

@ -243,8 +243,6 @@ jobs:
APK_ABI: ${{ matrix.abi }}
APK_VERSION_NAME: ${{ github.event.release.tag_name || 'v1' }}
KEYSTORE_PASS: ${{ secrets.KEYSTORE_PASS }}
ALIAS_NAME: ${{ secrets.ALIAS_NAME }}
ALIAS_PASS: ${{ secrets.ALIAS_PASS }}
run: |
mkdir -p app/libs/$APK_ABI
cp ../src/out/Release/naive app/libs/$APK_ABI/libnaive.so

View file

@ -10,8 +10,8 @@ android {
create("release") {
storeFile = rootProject.file("release.keystore")
storePassword = System.getenv("KEYSTORE_PASS")
keyAlias = System.getenv("ALIAS_NAME")
keyPassword = System.getenv("ALIAS_PASS")
keyAlias = "release"
keyPassword = System.getenv("KEYSTORE_PASS")
}
}

Binary file not shown.