From 8cb5587c51d15578358cdf988a74f66d14dd0a03 Mon Sep 17 00:00:00 2001 From: algosketch Date: Fri, 19 Apr 2024 02:45:15 +0900 Subject: [PATCH 1/2] ci test --- .github/workflows/pull-request-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pull-request-ci.yml b/.github/workflows/pull-request-ci.yml index d57c9a9f..8eed1caa 100644 --- a/.github/workflows/pull-request-ci.yml +++ b/.github/workflows/pull-request-ci.yml @@ -42,3 +42,4 @@ jobs: uses: EnricoMi/publish-unit-test-result-action@v2 with: files: "**/test-results/**/*.xml" + From c60be574686addd9e69cca81c9ab2189626656c0 Mon Sep 17 00:00:00 2001 From: algosketch Date: Fri, 19 Apr 2024 02:49:08 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EA=B5=AC=EA=B8=80=20=EC=84=9C=EB=B9=84?= =?UTF-8?q?=EC=8A=A4=20json=20=EB=94=94=EC=BD=94=EB=94=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pull-request-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-ci.yml b/.github/workflows/pull-request-ci.yml index 8eed1caa..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