-
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.
chore: setup github action to generate APK
- Loading branch information
1 parent
91d6737
commit 6b7c080
Showing
1 changed file
with
109 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,109 @@ | ||
name: Android Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'release' | ||
tags: | ||
- 'v*' | ||
jobs: | ||
buildApk: | ||
name: Build android APK | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
|
||
- name: Setup Java JDK | ||
uses: actions/[email protected] | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
cache: 'gradle' | ||
|
||
# Gradle cache for faster builds | ||
- uses: actions/[email protected] | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: Setup Node.js environment | ||
uses: actions/[email protected] | ||
with: | ||
node-version: '20.*.*' | ||
cache: 'yarn' | ||
- name: Get yarn cache directory path | ||
id: yarn-cache-dir-path | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
- uses: actions/[email protected] | ||
id: yarn-cache | ||
with: | ||
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn- | ||
- name: Install node dependencies | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Decode Keystore | ||
env: | ||
ENCODED_STRING: ${{ secrets.SIGNING_KEY_STORE_BASE64 }} | ||
SIGNING_KEY_STORE_PATH: ${{ secrets.SIGNING_KEY_STORE_PATH }} | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
|
||
run: | | ||
echo $ENCODED_STRING > keystore-b64.txt | ||
base64 -d keystore-b64.txt > android/app/keystore.jks | ||
- name: Generate android APK | ||
env: | ||
SIGNING_KEY_STORE_PATH: ${{ secrets.SIGNING_KEY_STORE_PATH }} | ||
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }} | ||
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} | ||
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }} | ||
run: yarn generateReleaseApk | ||
|
||
- name: Upload APK | ||
uses: actions/[email protected] | ||
with: | ||
name: apk | ||
path: android/app/build/outputs/apk/release/app-release.apk | ||
|
||
# releaseApk: | ||
# name: Release android APK | ||
# needs: buildApk | ||
# if: contains(github.ref, 'tags') | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Download APK from build | ||
# uses: actions/[email protected] | ||
# with: | ||
# name: apk | ||
# - name: Create Release | ||
# id: create_release | ||
# uses: actions/create-release@v1 | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
|
||
# with: | ||
# tag_name: ${{ github.ref }} | ||
# release_name: Release ${{ github.ref }} | ||
# draft: false | ||
# prerelease: false | ||
|
||
# - name: Upload Release APK | ||
# id: upload_release_asset | ||
# uses: actions/[email protected] | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
# with: | ||
# upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
# asset_path: apk/app-release.apk | ||
# asset_name: app-release.apk | ||
# asset_content_type: application/zip |