online multiplayer chess game (note server currently down)
Revert "use normal builds for android" as it didnt fix the problem.
This reverts commit 4f7311257c826e92b8796f8db394762acfdd2fdb.
bendn 2022-08-12
parent 4f73112 · commit 9f8fcb7
-rw-r--r--.github/workflows/export.yml12
1 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/export.yml b/.github/workflows/export.yml
index 9df8306..db6e2c0 100644
--- a/.github/workflows/export.yml
+++ b/.github/workflows/export.yml
@@ -37,6 +37,9 @@ jobs:
- name: Web export
platform: web
+ - name: Android export
+ platform: android
+
steps:
- name: Build (Windows)
if: matrix.platform == 'windows'
@@ -54,20 +57,15 @@ jobs:
if: matrix.platform == 'web'
uses: bend-n/godot-actions/.github/actions/export-web@main
- build-android:
- name: Android export
- runs-on: ubuntu-latest
- container:
- image: ghcr.io/bend-n/godot:3.5 # use normal builds, as android builds are broken for adnroid
- steps:
- name: Build (Android)
+ if: matrix.platform == 'android'
uses: bend-n/godot-actions/.github/actions/export-android@main
with:
android-keystore-base64: ${{ secrets.RELEASE_KEYSTORE_BASE64 }}
android-password: ${{ secrets.RELEASE_KEYSTORE_PASSWORD }}
push-itch:
- needs: [export, build-android]
+ needs: [export]
name: Push to itch.io
runs-on: ubuntu-20.04
steps: