Skip to content

Commit

Permalink
[expo] extract env screts in Github Action.
Browse files Browse the repository at this point in the history
**Summary**

We use eas-{env} for Github Environment and set secrets.

**Test**

- Github action with main branch

**Issue**

- #155
  • Loading branch information
yssk22 committed Dec 19, 2024
1 parent e96780f commit 584efec
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 14 deletions.
35 changes: 22 additions & 13 deletions .github/workflows/eas-build-android.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: EAS - Build - Android
name: EAS - Build Android
on:
workflow_dispatch:
inputs:
Expand All @@ -11,30 +11,39 @@ on:
- dev
- beta
- prod
env:
NODE_VERSION: 22.3.0
EAS_VERSION: 13.4.2
JAVA_VERSION: 17
jobs:
build:
build-dev:
runs-on: ubuntu-latest
if: ${{ (inputs.config == 'dev') }}
environment:
name: eas-${{inputs.platform}}
name: eas-dev
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "22.3.0"
node-version: ${{ env.NODE_VERSION }}
cache: "yarn"
cache-dependency-path: "expo/package.json"
- uses: expo/expo-github-action@v8
with:
eas-version: 13.4.2
eas-version: ${{ env.EAS_VERSION }}
token: ${{ secrets.EXPO_TOKEN }}
- run: cd expo && yarn install
- if: ${{ ((inputs.config == 'prod') || (inputs.config == 'beta')) }}
run: cd expo && ./scripts/eas.sh build --profile ${{inputs.config}} --platform android --local --output ./build/hpapp-${{inputs.config}}.aab
- uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: "temurin"
- uses: android-actions/setup-android@v3
- run: cd expo && ./scripts/eas-githubaction-pre.sh
env:
HPAPP_CONFIG_NAME: ${{inputs.config}}
HPAPP_CONFIG_PLATFORM: ${{inputs.platform}}
- if: ${{ ((inputs.config != 'prod') && (inputs.config != 'beta')) }}
run: cd expo && ./scripts/eas.sh build --profile dev --platform android --local --output ./build/hpapp-${{inputs.config}}.apk
SECRETS_JSON: ${{ secrets.SECRETS_JSON }}
GOOGLE_SERVICES_INFO_PLIST: ${{ secrets.GOOGLE_SERVICES_INFO_PLIST }}
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
- run: cd expo && yarn install
- run: cd expo && ./scripts/eas.sh build --profile dev --platform android --local --output ./build/hpapp-${{inputs.config}}.apk
env:
HPAPP_CONFIG_NAME: dev
HPAPP_CONFIG_PLATFORM: ${{ inputs.platform }}
HPAPP_CONFIG_NAME: ${{inputs.config}}
1 change: 1 addition & 0 deletions expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
"expo-sqlite": "~14.0.6",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.17",
"fs-extra": "^11.2.0",
"i18n-js": "^4.3.2",
"jsdom-jscore-rn": "^0.1.8",
"node-html-parser": "^6.1.13",
Expand Down
15 changes: 15 additions & 0 deletions expo/scripts/eas-githubaction-pre.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash
BASEDIR=$(dirname $0)/..

if [ -z $HPAPP_CONFIG_NAME ]; then
echo "HPAPP_CONFIG_NAME is not defined."
exit 1
fi

## extract environment screts
echo '$SECRETS_JSON' | envsubst > $BASEDIR/config/$HPAPP_CONFIG_NAME/secrets.json
echo '$GOOGLE_SERVICES_INFO_PLIST' | envsubst > $BASEDIR/config/$HPAPP_CONFIG_NAME/GoogleService-Info.plist
echo '$GOOGLE_SERVICES_JSON' | envsubst > $BASEDIR/config/$HPAPP_CONFIG_NAME/google-services.json

## remove .gitignore as eas still ignore those files
rm $BASEDIR/config/$HPAPP_CONFIG_NAME/.gitignore
2 changes: 1 addition & 1 deletion expo/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7310,7 +7310,7 @@ fs-extra@^10.0.0:
jsonfile "^6.0.1"
universalify "^2.0.0"

fs-extra@^11.1.0:
fs-extra@^11.1.0, fs-extra@^11.2.0:
version "11.2.0"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b"
integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==
Expand Down

0 comments on commit 584efec

Please sign in to comment.