Skip to content

Commit

Permalink
fix(CI/CD): env issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaygojiya committed Jun 24, 2024
1 parent 8aa25a3 commit e458ce4
Showing 1 changed file with 61 additions and 54 deletions.
115 changes: 61 additions & 54 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,75 +14,82 @@ jobs:
- 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 Java JDK
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'

# - name: Setup Node.js environment
# uses: actions/[email protected]
# with:
# node-version: '20.*.*'
# cache: 'yarn'
# 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: 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: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: '20.*.*'
cache: 'yarn'

# - name: Install node dependencies
# run: yarn install --frozen-lockfile
- 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: Decode Keystore & google services config
# env:
# ENCODED_STRING: ${{ secrets.SIGNING_KEY_STORE_BASE64 }}
# GOOGLE_SERVICES_CONFIG: ${{ secrets.GOOGLE_SERVICES_JSON }}
# 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
# echo $GOOGLE_SERVICES_CONFIG > google-services-b64.txt
# base64 -d google-services-b64.txt > android/app/google-services.json
- name: Install node dependencies
run: yarn install --frozen-lockfile

- name: Decode Keystore & google services config
env:
ENCODED_STRING: ${{ secrets.SIGNING_KEY_STORE_BASE64 }}
GOOGLE_SERVICES_CONFIG: ${{ secrets.GOOGLE_SERVICES_JSON }}
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
echo $GOOGLE_SERVICES_CONFIG > google-services-b64.txt
base64 -d google-services-b64.txt > android/app/google-services.json
- name: Create env file
uses: SpicyPizza/[email protected]
with:
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 }}
file_name: .env
fail_on_empty: false
sort_keys: false

- 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 }}
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 }}
run: |
ls
cat .env
cat .env
ls
yarn generate:apk
- name: Upload APK
uses: actions/[email protected]
with:
name: env
path: .env
name: app.apk
path: android/app/build/outputs/apk/release/app-release.apk
if-no-files-found: error

# releaseApk:
Expand Down

0 comments on commit e458ce4

Please sign in to comment.