We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee53e1d commit 28023bbCopy full SHA for 28023bb
.github/workflows/deploy.yml
@@ -81,9 +81,18 @@ jobs:
81
env:
82
DISPLAY: ":99"
83
84
+ - name: Setup Android keystore (if secrets exist)
85
+ if: steps.version_check.outputs.changed == 'true' && env.ANDROID_KEYSTORE != ''
86
+ run: |
87
+ mkdir -p ~/.android
88
+ echo "${{ secrets.ANDROID_KEYSTORE }}" | base64 -d > ~/.android/release.keystore
89
+ env:
90
+ ANDROID_KEYSTORE: ${{ secrets.ANDROID_KEYSTORE }}
91
+
92
- name: Export project for Android
93
if: steps.version_check.outputs.changed == 'true'
94
run: |
95
+ # Ensure debug keystore exists and export
96
godot --headless --verbose --export-release "Android" build/android/patch-jumper.apk
97
98
0 commit comments