From d3aaa3656bf16ba854c64b55dc689ac191b0faed Mon Sep 17 00:00:00 2001 From: jobobby04 Date: Sat, 9 May 2020 19:29:32 -0400 Subject: [PATCH] Another way to add the json to the actions --- .github/workflows/android-debug.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/android-debug.yml b/.github/workflows/android-debug.yml index 1a4e0496a..1ae128629 100644 --- a/.github/workflows/android-debug.yml +++ b/.github/workflows/android-debug.yml @@ -34,7 +34,11 @@ jobs: uses: finnp/create-file-action@1.0.0 env: FILE_NAME: "app/google-services.json" - FILE_BASE64: ${{ secrets.GOOGLE_SERVICES }} + FILE_DATA: ${{ secrets.GOOGLE_SERVICES_TEXT }} + - name: Validate JSON + uses: OrRosenblatt/validate-json-action@0.1.0 + with: + json: app/google-services.json - name: Build Release APK run: bash ./gradlew assembleStandard --stacktrace - name: Sign Android release