-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚧 💚 feat: Testing github action to build Android.apk
- Loading branch information
1 parent
b873fea
commit 97085f1
Showing
2 changed files
with
80 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,79 @@ | ||
name: Build Android | ||
run-name: Creating Production Ready Android App 🚀 | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- master | ||
|
||
jobs: | ||
build: | ||
name: Build APK | ||
runs-on: ubuntu-latest | ||
# TODO: add the default directory - COMMENT IF IT'S NOT IN SUBFOLDER | ||
# defaults: | ||
# run: | ||
# working-directory: ./frontend | ||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v3 | ||
# TODO: add your branch to checkout | ||
with: | ||
ref: master | ||
|
||
- name: Setup java | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: "zulu" | ||
java-version: "11" | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 19.x | ||
|
||
- name: install dependencies | ||
run: npm ci | ||
|
||
- name: Create Build Folder | ||
run: npm run build | ||
|
||
- name: Add android folder if not present | ||
run: if [ ! -d "./android" ]; then npx cap add android; fi | ||
|
||
- name: Capacitor update | ||
run: npx cap update | ||
|
||
- name: Capacitor copy | ||
run: npx cap copy | ||
|
||
# TODO: Check for folder structure in README for generating splash screen | ||
- name: Generate icons and splash screen to android folder | ||
run: if [ -d "./resources" ]; then npm install @capacitor/assets --save-dev && npx capacitor-assets generate --android; fi | ||
|
||
- name: Build app bundle | ||
run: cd android && ./gradlew bundle && ./gradlew assembleDebug | ||
|
||
- name: Extract Android signing key from env | ||
run: | | ||
echo "${{ secrets.RELEASE_KEYSTORE }}" > android/release.jks.base64 | ||
base64 -d android/release.jks.base64 > android/release.decrypted.jks | ||
- name: Sign dev build | ||
run: jarsigner -keystore android/release.decrypted.jks -storepass "${{ secrets.RELEASE_KEYSTORE_PASSWORD }}" -signedjar ./android/app/build/outputs/bundle/release/app-release-signed.aab ./android/app/build/outputs/bundle/release/app-release.aab release | ||
|
||
- name: Check folder content of android output | ||
run: ls ./android/app/build/outputs/bundle/release | ||
|
||
- name: Set Tag | ||
id: current-datetime | ||
run: echo "CURRENT_DATETIME=$(date +'%Y-%m-%d-%H_%M_%S%z')" >> "$GITHUB_OUTPUT" | ||
|
||
- name: Build Release | ||
shell: bash | ||
run: | | ||
hub release create ${{ steps.current-datetime.outputs.CURRENT_DATETIME }} \ | ||
-m ${{ steps.current-datetime.outputs.CURRENT_DATETIME }} \ | ||
-a ./android/app/build/outputs/bundle/release/app-release-signed.aab \ | ||
-a ./android/app/build/outputs/apk/debug/app-debug.apk | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,7 @@ yarn-error.log* | |
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
# android keystore | ||
android/*.jks | ||
android/*.jks.base64 |