From 3adc0ad4299db0e5f8613f7b23f08db1209f12c4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 29 Dec 2025 15:34:40 +0000 Subject: [PATCH] Update README and fix workflow security permissions Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- .github/workflows/build-apk.yml | 3 +++ README.md | 14 ++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/.github/workflows/build-apk.yml b/.github/workflows/build-apk.yml index cd5f021..04996bd 100644 --- a/.github/workflows/build-apk.yml +++ b/.github/workflows/build-apk.yml @@ -7,6 +7,9 @@ on: branches: [ main, master ] workflow_dispatch: +permissions: + contents: read + jobs: build: runs-on: ubuntu-latest diff --git a/README.md b/README.md index f1ddc0e..4f66733 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,16 @@ # CaproverForge Android APK frontend for Caprover Captain admin panel, native android, gh actions + +## Build Status +This project uses GitHub Actions to automatically build Android APK files. + +### Download APKs +APKs are automatically built and published as artifacts when changes are pushed to the repository. You can download them from the [Actions tab](../../actions) after workflow completion. + +### Building Locally +```bash +./gradlew assembleDebug # Build debug APK +./gradlew assembleRelease # Build release APK (unsigned) +``` + +Note: Release APKs are currently unsigned and intended for development/testing purposes only.