From cc44b3a72b4241b4ba112092f433cec843c10824 Mon Sep 17 00:00:00 2001 From: Mohit Date: Thu, 9 May 2024 20:57:32 +0530 Subject: [PATCH] try no 3 --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7cf2745..2167501 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,13 +39,13 @@ jobs: - name: Install dependencies run: flutter pub get - - name: Decode Keystore - env: - ENCODED_STRING: ${{ secrets.KEYSTORE }} - run: | - TMP_KEYSTORE_FILE_PATH="${RUNNER_TEMP}"/keystore - mkdir "${TMP_KEYSTORE_FILE_PATH}" - echo $ENCODED_STRING | base64 -i > "${TMP_KEYSTORE_FILE_PATH}"/experiment_keystore.jks + - name: Run Workflow + id: write_file + uses: timheuer/base64-to-file@v1.2 + with: + fileName: 'experiment_keystore.jks' + fileDir: "${RUNNER_TEMP}/keystore" + encodedString: ${{ secrets.KEYSTORE }} - name: Make gradlew executable run: chmod +x android/./gradlew