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