-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2fe9838
commit 94add1f
Showing
1 changed file
with
41 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,51 @@ | ||
name: Build & Publish Release APK | ||
name: Build project after push | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- "v*" | ||
workflow_dispatch: # Manual trigger | ||
inputs: | ||
tag: | ||
description: 'Tag to build and release' | ||
required: true | ||
|
||
jobs: | ||
Gradle: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v2 | ||
- name: setup jdk | ||
uses: actions/setup-java@v1 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: gradle | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Build with Gradle | ||
run: ./gradlew build | ||
|
||
- name: Build debug APK | ||
run: bash ./gradlew assembleDebug --stacktrace | ||
|
||
- name: Check files | ||
run: ls -al app/build/outputs/apk/debug | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
with: | ||
java-version: 17 | ||
- name: Make Gradle executable | ||
run: chmod +x ./gradlew | ||
- name: Build Release APK | ||
run: ./gradlew assembleRelease | ||
- name: Releasing using Hub | ||
uses: kyze8439690/action-release-releaseapk@master | ||
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.GB_TOKEN }} | ||
APP_FOLDER: app | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: app/build/outputs/apk/debug/app-debug.apk | ||
asset_name: ${{ github.event.repository.name }}.apk | ||
asset_content_type: application/vnd.android.package-archive |