From a331b1817ea1dabce7020e7414bf7c0c18013151 Mon Sep 17 00:00:00 2001 From: Hemant KArya <65885023+HemantKArya@users.noreply.github.com> Date: Sat, 6 Jul 2024 14:14:34 +0530 Subject: [PATCH] workflow fix --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 00ad7b7..6496dd2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,7 +31,12 @@ jobs: run: echo "CLIENT_ID = XXXXX\nCLIENT_SECRET = XXXX EOF" > assets/.env - name: Create keystore file - run: echo "${{ secrets.KEY_STORE }}" | base64 --decode > ./android/bloomee.jks + run: | + $b64 = "${{ secrets.KEY_STORE }}" + $filename = "./android/bloomee.jks" + $bytes = [Convert]::FromBase64String($b64) + [IO.File]::WriteAllBytes($filename, $bytes) + # run: echo "${{ secrets.KEY_STORE }}" | base64 --decode > ./android/bloomee.jks - name: Create Keystore properties run: |