From 0e80b7313c798a493c3f170a445e9dfd92867ac7 Mon Sep 17 00:00:00 2001 From: algosketch Date: Fri, 19 Apr 2024 02:13:14 +0900 Subject: [PATCH] =?UTF-8?q?chore=20:=20ci=20=ED=94=84=EB=A1=9C=ED=8D=BC?= =?UTF-8?q?=ED=8B=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pull-request-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pull-request-ci.yml b/.github/workflows/pull-request-ci.yml index 6c148c77..d57c9a9f 100644 --- a/.github/workflows/pull-request-ci.yml +++ b/.github/workflows/pull-request-ci.yml @@ -26,9 +26,15 @@ jobs: - name: Run unit tests env: + DEBUG_KEYSTORE: ${{ secrets.DEBUG_KEYSTORE }} + KEYSTORE_PROPERTIES: ${{ secrets.KEYSTORE_PROPERTIES }} LOCAL_PROPERTIES: ${{ secrets.LOCAL_PROPERTIES }} + GOOGLE_SERVICES: ${{ secrets.GOOGLE_SERVICES }} run: | + 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 ./gradlew test --stacktrace - name: Publish Test Results