Skip to content

Commit

Permalink
workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HemantKArya committed Jul 6, 2024
1 parent df8452a commit a331b18
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit a331b18

Please sign in to comment.