Skip to content

Commit

Permalink
馃毀 馃挌 feat: Testing github action to build Android.apk
Browse files Browse the repository at this point in the history
  • Loading branch information
bytevictor committed Mar 29, 2024
1 parent b873fea commit 97085f1
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 1 deletion.
77 changes: 76 additions & 1 deletion .github/workflows/create-android.yml
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 }}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

# android keystore
android/*.jks
android/*.jks.base64

0 comments on commit 97085f1

Please sign in to comment.