Skip to content

Commit

Permalink
chore: re-build beta
Browse files Browse the repository at this point in the history
  • Loading branch information
ohassine committed May 23, 2024
1 parent c33d14e commit f85ece9
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build-beta-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,16 @@ jobs:
echo $ENCODED_STRING | base64 -di > "${TMP_KEYSTORE_FILE_PATH}"/key.keystore
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build beta flavour
- name: Build beta flavour APK
run:
./gradlew app:assembleBetaRelease -p ./ --no-daemon
env:
KEYSTORE_KEY_NAME_RELEASE: ${{ secrets.SIGNING_KEY_ALIAS_PRE_RELEASE }}
KEYPWD_RELEASE: ${{ secrets.SIGNING_KEY_PASSWORD_PRE_RELEASE }}
KEYSTOREPWD_RELEASE: ${{ secrets.SIGNING_STORE_PASSWORD_PRE_RELEASE }}
ENABLE_SIGNING: ${{ secrets.ENABLE_SIGNING }}
- name: Build beta flavour Bundle
run:
./gradlew app:assembleBetaRelease -p ./ --no-daemon |
./gradlew app:bundleBetaRelease -p ./ --no-daemon
env:
KEYSTORE_KEY_NAME_RELEASE: ${{ secrets.SIGNING_KEY_ALIAS_PRE_RELEASE }}
Expand Down

0 comments on commit f85ece9

Please sign in to comment.