Skip to content

Translated using Weblate (Korean) #300

Translated using Weblate (Korean)

Translated using Weblate (Korean) #300

Workflow file for this run

name: Build Debug APK
on:
push:
branches:
- '*'
paths-ignore:
- '**.md'
- '**.yml'
pull_request:
branches:
- '*'
paths-ignore:
- '**.md'
types: [opened, reopened]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
submodules: true
- name: Set up Java 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'adopt'
cache: gradle
- name: Grant execution permission to Gradle Wrapper
run: chmod +x gradlew
- name: Build Debug APK
run: ./gradlew assembleDebug
- name: Sign Apk
continue-on-error: true
id: sign_apk
uses: r0adkll/sign-android-release@v1
with:
releaseDir: app/build/outputs/apk/debug
signingKeyBase64: ${{ secrets.KEY_BASE64 }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEYSTORE_PASS }}
keyPassword: ${{ secrets.KEYSTORE_PASS }}
- name: Remove file that aren't signed
continue-on-error: true
run: |
ls | grep 'signed\.apk$' && find . -type f -name '*.apk' ! -name '*-signed.apk' -delete
- name: Upload the APK
uses: actions/upload-artifact@v3
with:
name: Droid-ify-Debug
path: app/build/outputs/apk/debug/app-debug*.apk