Update android.yml [One of the many times I will...]
This commit is contained in:
parent
916ad91b82
commit
34f57943b3
1 changed files with 54 additions and 22 deletions
64
.github/workflows/android.yml
vendored
64
.github/workflows/android.yml
vendored
|
@ -1,26 +1,58 @@
|
||||||
name: Build & Publish Release APK
|
name: Build and Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
tags:
|
tags:
|
||||||
- '*'
|
- "v*"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Gradle:
|
apk:
|
||||||
|
name: Generate APK
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout code
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2.4.0
|
||||||
- name: setup jdk
|
- name: Setup JDK
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v2.5.0
|
||||||
with:
|
with:
|
||||||
java-version: 11
|
distribution: temurin
|
||||||
- name: Make Gradle executable
|
java-version: "11"
|
||||||
run: chmod +x ./gradlew
|
- name: Set execution flag for gradlew
|
||||||
- name: Build Release APK
|
run: chmod +x gradlew
|
||||||
run: ./gradlew assembleRelease
|
- name: Build APK
|
||||||
- name: Releasing using Hub
|
run: bash ./gradlew assembleDebug --stacktrace
|
||||||
uses: sangatdesai/release-apk@main
|
- name: Upload APK
|
||||||
|
uses: actions/upload-artifact@v1
|
||||||
|
with:
|
||||||
|
name: apk
|
||||||
|
path: app/build/outputs/apk/debug/app-debug.apk
|
||||||
|
|
||||||
|
release:
|
||||||
|
name: Release APK
|
||||||
|
needs: apk
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Download APK from build
|
||||||
|
uses: actions/download-artifact@v1
|
||||||
|
with:
|
||||||
|
name: apk
|
||||||
|
- name: Create Release
|
||||||
|
id: create_release
|
||||||
|
uses: actions/create-release@v1
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
APP_FOLDER: app
|
with:
|
||||||
|
tag_name: ${{ github.run_number }}
|
||||||
|
release_name: ${{ github.event.repository.name }} v${{ github.run_number }}
|
||||||
|
- name: Upload Release APK
|
||||||
|
id: upload_release_asset
|
||||||
|
uses: actions/upload-release-asset@v1.0.1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: apk/app-debug.apk
|
||||||
|
asset_name: ${{ github.event.repository.name }}.apk
|
||||||
|
asset_content_type: application/zip
|
||||||
|
|
Loading…
Reference in a new issue