actions github
Algunas comprobaciones han fallado
Build & Publish APK Release / build (push) Failing after 6s

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-12-25 21:21:54 +01:00
padre 156fbca30a
commit 2851925ba6

35
.github/workflows/build-release-apk.yml vendido Archivo normal
Ver fichero

@@ -0,0 +1,35 @@
name: Build & Publish APK Release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Make Gradle executable
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Build Debug APK
run: ./gradlew assembleDebug
- name: Upload APK to Release
uses: ShaunLWM/action-release-debugapk@master
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
APP_FOLDER: app
RELEASE_TITLE: Release ${{ github.ref_name }}