Github Action to export a Godot Engine 3 and 4 game for Android to apk/aab.
If you are facing problems with the action or this README feels not complete, pull requests are welcome or open an issue.
Godot 4.x is the current active stable version and will be actively maintained.
You can find the code in the main
branch.
- Godot Project
- A valid exports_preset.cfg with an Android config
- A valid export_credentials.cfg
key | required | default | description |
---|---|---|---|
godot-version | true | . | Godot Engine version. Supported are 4.x versions. Check versions here |
godot-channel | false | stable | Godot Engine release channel (stable, beta, rc1, rc2, rc3...). Defaults to 'stable' Check release channels here |
working-directory | false | . | Path to project.godot file |
Use the 4.x tag
- name: Godot Android export
uses: dulvui/godot-android-export@v4
with:
godot-version: 4.2.2
You an find a working examples here:
https://github.com/dulvui/futsal-manager/blob/main/.github/workflows/upload-android.yml
Godot 3.x is the current LTS version and will be less actively maintained.
You can find the code in the godot-3
branch.
- Godot Project
- A valid exports_preset.cfg with an Android config
key | required | default | description |
---|---|---|---|
working-directory | false | . | Path to project.godot file |
godot-version | false | 3.x | Check versions here |
Use the 3.x tag
- name: Godot Android export
uses: dulvui/godot-android-export@v3.0.0
with:
working-directory: game
godot-version: 3.5.3
You an find a working examples here:
https://github.com/dulvui/pocket-broomball/blob/main/.github/workflows/upload-android.yml
https://github.com/dulvui/ball2box/blob/main/.github/workflows/upload-android.yml
The repository and action has been renamed from godot-android-upload to simply godot-android-export to simplify the action and to remove third party actions dependencies. Now this actions follows the Unix philosophy of simply doing one thing well. You can then upload the aab/apk export of your game where ever you want.
This software is licensed under the MIT license.