Skip to content

Commit

Permalink
minify apks
Browse files Browse the repository at this point in the history
  • Loading branch information
brahmkshatriya committed Feb 23, 2024
1 parent 26d291f commit 3e48426
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 17 deletions.
17 changes: 2 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: build

on: [ push, pull_request, workflow_dispatch ]
on: [ push, workflow_dispatch ]

jobs:
build:
Expand All @@ -26,17 +26,4 @@ jobs:
- name: Upload APK
uses: actions/upload-artifact@v4
with:
path: app/build/outputs/apk/debug/app-debug.apk

- name: Upload APK to Discord
shell: bash
env:
VERSION: ${{ github.event.head_commit.id }}
CONTENT: ${{ github.event.head_commit.message }}
ROLE: ${{ secrets.DISCORD_PING_ROLE_ID }}
WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
run: |
content=$( jq -Rsa . <<< "${{ env.CONTENT }}" )
version=$( echo ${{ env.VERSION }} | cut -c1-7 )
mv app/build/outputs/apk/debug/app-debug.apk app/build/outputs/apk/debug/${version}.apk
curl -F "payload_json={\"content\":\"<@&${{ env.ROLE }}> **${version}**\n${content:1:-1}\"}" -F "echo_beta=@app/build/outputs/apk/debug/${version}.apk" ${{ env.WEBHOOK }}
path: app/build/outputs/apk/debug/app-debug.apk
45 changes: 45 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: nightly

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
cache: 'gradle'

- name: Make gradlew executable
run: chmod +x ./gradlew

- name: Build with Gradle
run: ./gradlew assembleDebug

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

- name: Upload APK to Discord
shell: bash
env:
VERSION: ${{ github.event.head_commit.id }}
CONTENT: ${{ github.event.head_commit.message }}
ROLE: ${{ secrets.DISCORD_PING_ROLE_ID }}
WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
run: |
content=$( jq -Rsa . <<< "${{ env.CONTENT }}" )
version=$( echo ${{ env.VERSION }} | cut -c1-7 )
mv app/build/outputs/apk/debug/app-debug.apk app/build/outputs/apk/debug/${version}.apk
curl -F "payload_json={\"content\":\"<@&${{ env.ROLE }}> **${version}**\n${content:1:-1}\"}" -F "echo_beta=@app/build/outputs/apk/debug/${version}.apk" ${{ env.WEBHOOK }}
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PR Test Builds
name: pr build

on:
pull_request:
Expand Down
5 changes: 4 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,15 @@ android {

buildTypes {
release {
isMinifyEnabled = false
isMinifyEnabled = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
debug {
isMinifyEnabled = true
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down

0 comments on commit 3e48426

Please sign in to comment.