diff --git a/.github/workflows/pull-request-ci.yml b/.github/workflows/pull-request-ci.yml index d57c9a9f..cac72107 100644 --- a/.github/workflows/pull-request-ci.yml +++ b/.github/workflows/pull-request-ci.yml @@ -34,7 +34,7 @@ jobs: echo "$KEYSTORE" | base64 -d > ./app/boolti-keystore.keystore echo "$KEYSTORE_PROPERTIES" > keystore.properties echo "$LOCAL_PROPERTIES" > local.properties - echo "$GOOGLE_SERVICES" > ./app/google-services.json + echo "$GOOGLE_SERVICES" | base64 -d > ./app/google-services.json ./gradlew test --stacktrace - name: Publish Test Results @@ -42,3 +42,4 @@ jobs: uses: EnricoMi/publish-unit-test-result-action@v2 with: files: "**/test-results/**/*.xml" +