mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-12 02:41:14 +00:00
conditionally run action without keys
This commit is contained in:
parent
f3e0d04b31
commit
b8fbd39213
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -129,7 +129,7 @@ jobs:
|
||||
run: |
|
||||
echo "${{ secrets.keystore }}" | base64 -d > release.keystore
|
||||
cd android-project
|
||||
./gradlew packageRelease \
|
||||
./gradlew $([ -n "$SIGNING_KEY_ALIAS" ] && echo packageRelease || echo assembleDebug ) \
|
||||
--info \
|
||||
-PcmakeArgs="-DCMAKE_BUILD_TYPE=Release \
|
||||
-DISLE_USE_DX5=${{ !!matrix.dx5 }} \
|
||||
|
||||
@ -37,7 +37,7 @@ android {
|
||||
enableV4Signing = true
|
||||
keyAlias = System.getenv("SIGNING_KEY_ALIAS")
|
||||
keyPassword = System.getenv("SIGNING_KEY_PASSWORD")
|
||||
storeFile = file(System.getenv("SIGNING_STORE_FILE"))
|
||||
System.getenv("SIGNING_STORE_FILE")?.with { storeFile = file(it) }
|
||||
storePassword = System.getenv("SIGNING_STORE_PASSWORD")
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user