Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Add workflow to build unsigned apk
Browse files Browse the repository at this point in the history
  • Loading branch information
SuhasDissa committed May 9, 2024
1 parent 138c83a commit 6742a7e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/unsigned_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Create Unsigned Release APK

on:
workflow_dispatch:

jobs:
debug-builds:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v2

- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: "temurin"

- name: Build APK
run: bash ./gradlew assembleRelease --stacktrace

- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: app
path: app/build/outputs/apk/release/*.apk

0 comments on commit 6742a7e

Please sign in to comment.