From bd4a98e60abb26cc6ce961866d94af17f90677a5 Mon Sep 17 00:00:00 2001 From: Justin Bassett Date: Tue, 22 Dec 2020 23:16:28 -0500 Subject: [PATCH] Inflate secrets in wear os app. (#1252) --- .github/actions/inflate-secrets/action.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/actions/inflate-secrets/action.yml b/.github/actions/inflate-secrets/action.yml index 9b9b5d4a0..eed33041b 100644 --- a/.github/actions/inflate-secrets/action.yml +++ b/.github/actions/inflate-secrets/action.yml @@ -26,22 +26,29 @@ runs: shell: bash env: KEYSTORE: ${{ inputs.keystore }} - run: echo $KEYSTORE | base64 --decode > app/release_keystore.keystore + run: | + echo $KEYSTORE | base64 --decode > app/release_keystore.keystore + echo $KEYSTORE | base64 --decode > wearos_app/release_keystore.keystore - name: Inflate google-services.json shell: bash env: GOOGLE_SERVICES: ${{ inputs.google-services }} - run: echo $GOOGLE_SERVICES > app/google-services.json + run: | + echo $GOOGLE_SERVICES > app/google-services.json + echo $GOOGLE_SERVICES > wearos_app/google-services.json - name: Inflate firebaseAppDistributionServiceCredentialsFile.json shell: bash env: CREDS: ${{ inputs.firebase-creds }} - run: echo $CREDS > firebaseAppDistributionServiceCredentialsFile.json + run: | + echo $CREDS > firebaseAppDistributionServiceCredentialsFile.json - name: Inflate playStorePublishServiceCredentialsFile.json shell: bash env: CREDS: ${{ inputs.playstore-creds }} - run: echo $CREDS > app/playStorePublishServiceCredentialsFile.json \ No newline at end of file + run: | + echo $CREDS > app/playStorePublishServiceCredentialsFile.json + echo $CREDS > wearos_app/playStorePublishServiceCredentialsFile.json