Skip to content

Commit

Permalink
fix(CI/CD): clean workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaygojiya committed Jun 24, 2024
1 parent 4f7d5c9 commit 37adee3
Showing 1 changed file with 15 additions and 53 deletions.
68 changes: 15 additions & 53 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,22 @@ on:
- 'main'
tags:
- 'v*'

jobs:
buildApk:
name: Build android APK
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/[email protected]

- name: env set
uses: skiddph/[email protected]
with:
file: .env
env:
WEB_CLIENT_ID: ${{ secrets.WEB_CLIENT_ID }}
FB_APP_ID: ${{ secrets.FB_APP_ID }}
FB_LOGIN_PROTOCOL: ${{ secrets.FB_LOGIN_PROTOCOL }}
FB_CLIENT_TOKEN: ${{ secrets.FB_CLIENT_TOKEN }}
- name: Create .env file from secrets
run: |
echo WEB_CLIENT_ID=${{ secrets.WEB_CLIENT_ID }} > .env
echo FB_APP_ID=${{ secrets.FB_APP_ID }} >> .env
echo FB_LOGIN_PROTOCOL=${{ secrets.FB_LOGIN_PROTOCOL }} >> .env
echo FB_CLIENT_TOKEN=${{ secrets.FB_CLIENT_TOKEN }} >> .env
- name: Setup Java JDK
uses: actions/[email protected]
Expand All @@ -31,13 +30,12 @@ jobs:
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*') }}
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
Expand All @@ -49,11 +47,12 @@ jobs:

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_ENV

- uses: actions/[email protected]
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
path: ${{ env.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
Expand All @@ -65,13 +64,10 @@ jobs:
env:
ENCODED_STRING: ${{ secrets.SIGNING_KEY_STORE_BASE64 }}
GOOGLE_SERVICES_CONFIG: ${{ secrets.GOOGLE_SERVICES_JSON }}
SIGNING_KEY_STORE_PATH: ${{ secrets.SIGNING_KEY_STORE_PATH }}

run: |
echo $ENCODED_STRING > keystore-b64.txt
base64 -d keystore-b64.txt > android/app/keystore.jks
echo $GOOGLE_SERVICES_CONFIG > google-services-b64.txt
base64 -d google-services-b64.txt > android/app/google-services.json
echo $ENCODED_STRING | base64 -d > android/app/keystore.jks
echo $GOOGLE_SERVICES_CONFIG | base64 -d > android/app/google-services.json
- name: Generate android APK
env:
Expand All @@ -81,8 +77,7 @@ jobs:
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}

run: |
cat .env
ls -a
source .env
yarn generate:apk
- name: Upload APK
Expand All @@ -91,36 +86,3 @@ jobs:
name: app.apk
path: android/app/build/outputs/apk/release/app-release.apk
if-no-files-found: error

# 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

0 comments on commit 37adee3

Please sign in to comment.