App Builder Setup

GitHub Actions Workflow

Step 1 / 5
5-Step Setup Guide

Build APKs from
any website

Configure your GitHub repo to auto-build Android APK files with one click.

1
Password
2
Download
3
PAT Token
4
File Path
5
YAML
Step 1 of 5
Copy your password
You need this password to access the APK builder. Tap the eye to reveal, then copy it.
10017790731
Keep this private — never share it publicly.
Step 2 of 5
Download project archive
Download the base project ZIP from Proton Drive. Extract it and push the contents to your GitHub repository.
Step 3 of 5
Create GitHub PAT Token
A Personal Access Token (PAT) allows the workflow to publish your APK as a GitHub Release. Follow these steps carefully.
1
GitHub Settings খুলুন
GitHub-এ লগইন করুন, তারপর উপরে ডানে প্রোফাইল ছবিতে ক্লিক করুন → Settings যান।
Profile Photo Settings
2
Developer settings-এ যান
Settings পেজের একদম নিচে স্ক্রল করুন, Developer settings অপশনে ক্লিক করুন।
Settings Developer settings
3
Personal access tokens → Tokens (classic)
বাম মেনুতে Personal access tokens ক্লিক করুন, তারপর Tokens (classic) সিলেক্ট করুন।
Personal access tokens Tokens (classic)
4
Generate new token (classic)
Generate new token বাটনে ক্লিক করুন → Generate new token (classic) বেছে নিন। Note-এ যেকোনো নাম দিন, যেমন APK Builder। Expiration নিজের পছন্দ অনুযায়ী সেট করুন।
5
Select scopes — শুধু এই দুটি চালু রাখুন
নিচের তালিকা দেখুন। শুধু repoworkflow চালু রাখুন, বাকি সব বন্ধ রাখুন।
repo ✓ চালু
workflow ✓ চালু
admin:org বন্ধ
gist বন্ধ
notifications বন্ধ
user বন্ধ
delete_repo বন্ধ
6
Token তৈরি করুন ও সংরক্ষণ করুন
নিচে Generate token বাটনে ক্লিক করুন। Token একটাই দেখা যাবে — এটি কোথাও নোট করে রাখুন।
আপনার Token এরকম দেখাবে
ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
এই token পেজ রিফ্রেশ করলে বা বন্ধ করলে আর দেখা যাবে না। এখনই কপি করে নিরাপদ জায়গায় সংরক্ষণ করুন!
GitHub Secret হিসেবে যোগ করুন

Token-টি আপনার GitHub repository-এর Secret-এ সংরক্ষণ করুন যাতে workflow ব্যবহার করতে পারে।

Your Repo Settings Secrets and variables Actions New repository secret
Secret নাম ও মান
Name GITHUB_TOKEN
Value ghp_xxxx… (আপনার token)
Secret যোগ করার পর Add secret বাটনে ক্লিক করুন।
Step 4 of 5
Create workflow file
In your GitHub repo, create a new file at this exact path. The .github/workflows/ folder must exist first.
.github/workflows/
build-apk.yml
Step 5 of 5
Paste workflow YAML
Copy the full YAML and paste it as the entire content of your build-apk.yml file.
build-apk.yml
Scroll to read · tap button to copy all

Setup complete! 🎉

Your GitHub repository is fully configured. Go to Actions → Build APK to start building.

Password saved
Project archive downloaded
PAT Token created & saved as Secret
Workflow file path created
YAML workflow configured