actions github
Algunas comprobaciones han fallado
Build & Publish APK Release / build (push) Failing after 6s
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:
35
.github/workflows/build-release-apk.yml
vendido
Archivo normal
35
.github/workflows/build-release-apk.yml
vendido
Archivo normal
@@ -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 }}
|
||||||
Referencia en una nueva incidencia
Block a user