add kestore?
| l--------- | .github/workflows/export.yml | 4 | ||||
| -rw-r--r-- | export_presets.cfg | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/export.yml b/.github/workflows/export.yml index 1201eb2..20dfd96 120000 --- a/.github/workflows/export.yml +++ b/.github/workflows/export.yml @@ -1,6 +1,5 @@ # Whenever a push is made to the master branch then run the job on: - push: branches: - main @@ -28,8 +27,11 @@ jobs: # Ensure that you get the entire project history with: fetch-depth: 0 + - name: create keystore + run: keytool -keyalg RSA -genkeypair -alias androiddebugkey -keypass android -keystore debug.keystore -storepass android -dname "CN=Android Debug,O=Android,C=US" -validity 9999 -deststoretype pkcs12 - name: export game # Use latest version (see releases for all versions) + uses: firebelley/[email protected] with: # Defining all the required inputs diff --git a/export_presets.cfg b/export_presets.cfg index 6b1a93e..cb5a7e5 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -21,9 +21,9 @@ architectures/armeabi-v7a=true architectures/arm64-v8a=true architectures/x86=true architectures/x86_64=true -keystore/debug="" -keystore/debug_user="" -keystore/debug_password="" +keystore/debug="./debug.keystore" +keystore/debug_user="androiddebugkey" +keystore/debug_password="android" keystore/release="" keystore/release_user="" keystore/release_password="" |