immersive-home/.github/workflows/build-debug.yml
2023-11-20 13:02:06 +01:00

36 lines
788 B
YAML

# Build the Android APK on push to the master branch
name: Build APK
on:
push:
branches:
- main
- testing
env:
GODOT_VERSION: 4.1.3
EXPORT_NAME: immersive-home
jobs:
build:
runs-on: ubuntu-20.04
container:
image: barichello/godot-ci:4.1.3
steps:
- name: Checkout
uses: actions/checkout@v2
with:
lfs: true
- name: Android Export
run: |
mkdir -v -p build/android
godot -v --export-debug --headless "Android" /build/android/immersive-home.apk
- name: Show File Tree
run: |
sudo apt-get install tree
tree -a -L 3
- name: Upload APK
uses: actions/upload-artifact@v1
with:
name: immersive-home-debug
path: .