Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgomezrico committed Sep 3, 2023
1 parent caca63d commit 6920379
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Expand Up @@ -26,7 +26,7 @@ jobs:
echo "android.useAndroidX=true" >> gradle.properties
echo "android.enableJetifier=true" >> gradle.properties
base64 -d <<< GOOGLE_SERVICES > app/google-services.json
echo "$GOOGLE_SERVICES" | base64 -d > app/google-services.json
- name: Build with Gradle
run: ./gradlew build
18 changes: 9 additions & 9 deletions .github/workflows/deploy.yaml
Expand Up @@ -32,15 +32,15 @@ jobs:
run: |
echo "android.useAndroidX=true" >> gradle.properties
echo "android.enableJetifier=true" >> gradle.properties
base64 -d <<< $KEY > app/key.keystore
base64 -d <<< GOOGLE_SERVICES > app/google-services.json
echo $BANJEN_SIGN_PWD >> gradle.properties
echo $BANJEN_SIGN_ALIAS >> gradle.properties
echo $BANJEN_SIGN_PATH >> gradle.properties
echo $BANJEN_ADS_UNIT_ID_BANNER >> gradle.properties
echo $BANJEN_ADMOB_APP_ID >> gradle.properties

echo "$KEY" | base64 -d > app/key.keystore
echo "GOOGLE_SERVICES" | base64 -d > app/google-services.json
echo "$BANJEN_SIGN_PWD" | base64 -d >> gradle.properties
echo "$BANJEN_SIGN_ALIAS" | base64 -d >> gradle.properties
echo "$BANJEN_SIGN_PATH" | base64 -d >> gradle.properties
echo "$BANJEN_ADS_UNIT_ID_BANNER" | base64 -d >> gradle.properties
echo "$BANJEN_ADMOB_APP_ID" | base64 -d >> gradle.properties
- name: Build with Gradle
run: ./gradlew bundleRelease

0 comments on commit 6920379

Please sign in to comment.