Update README and fix workflow security permissions

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-29 15:34:40 +00:00
parent 84bbde49d5
commit 3adc0ad429
2 changed files with 17 additions and 0 deletions

View File

@@ -7,6 +7,9 @@ on:
branches: [ main, master ]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest

View File

@@ -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.