Skip to content

Commit b90c714

Browse files
authored
Update main.yml
1 parent 7140d81 commit b90c714

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
with:
1616
python-version: '3.10'
1717

18-
# 1. Instalar dependencias del sistema (las mismas que daban guerra en Colab)
18+
# 1. Instalar dependencias del sistema (AÑADIDO libltdl-dev)
1919
- name: Install system dependencies
2020
run: |
2121
sudo apt-get update
2222
sudo apt-get install -y \
23-
build-essential libtool libtool-bin autoconf automake \
23+
build-essential libtool libtool-bin autoconf automake libltdl-dev \
2424
libffi-dev libssl-dev python3-dev \
2525
libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev \
2626
libportmidi-dev libswscale-dev libavformat-dev libavcodec-dev \
@@ -33,10 +33,10 @@ jobs:
3333
pip install --upgrade pip
3434
pip install buildozer cython==0.29.33
3535
36-
# 3. Construir la APK (aceptando licencias automáticamente)
36+
# 3. Construir la APK (Sin 'yes |' porque ya está en el spec)
3737
- name: Build APK
3838
run: |
39-
yes | buildozer android debug
39+
buildozer android debug
4040
4141
# 4. Subir el resultado
4242
- name: Upload APK

0 commit comments

Comments
 (0)