Skip to content

Commit

Permalink
feat: check [11]
Browse files Browse the repository at this point in the history
  • Loading branch information
arifwidayana committed May 11, 2023
1 parent 55af659 commit 5ec5c8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
CORE_PROPERTIES_PATH: ${{ secrets.CORE_PROPERTIES_PATH }}

run: |
echo "${ENCODED_STRING_CORE// /}" | base64 -d > $CORE_PROPERTIES_PATH
echo $ENCODED_STRING_CORE | base64 --decode > $CORE_PROPERTIES_PATH
- name: Build with Gradle
run: ./gradlew build
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
CORE_PROPERTIES_PATH: ${{ secrets.CORE_PROPERTIES_PATH }}

run: |
echo "${ENCODED_STRING_CORE// /}" | base64 -d > $CORE_PROPERTIES_PATH
echo $ENCODED_STRING_CORE | base64 --decode > $CORE_PROPERTIES_PATH
# - name: Run instrumentation tests
# uses: reactivecircus/android-emulator-runner@v2
Expand Down Expand Up @@ -116,15 +116,15 @@ jobs:
CORE_PROPERTIES_PATH: ${{ secrets.CORE_PROPERTIES_PATH }}

run: |
echo "${ENCODED_STRING_CORE// /}" | base64 -d > $CORE_PROPERTIES_PATH
echo $ENCODED_STRING_CORE | base64 --decode > $CORE_PROPERTIES_PATH
- name: Decode Keystore
env:
ENCODED_STRING_KEYSTORE: ${{ secrets.RELEASE_STORE_FILE_B64 }}
RELEASE_KEY_FILE_PATH: ${{ secrets.RELEASE_KEY_FILE_PATH }}

run: |
echo "${ENCODED_STRING_KEYSTORE// /}" | base64 -d > $RELEASE_KEY_FILE_PATH
echo $ENCODED_STRING_KEYSTORE | base64 --decode > $RELEASE_KEY_FILE_PATH
- name: Build Release apk
env:
Expand Down

0 comments on commit 5ec5c8f

Please sign in to comment.