From 076fcbccd5261038c3113c795a44e2cfaccf0c39 Mon Sep 17 00:00:00 2001 From: Lee Haewon <94354545+Haewonny@users.noreply.github.com> Date: Sun, 11 Feb 2024 22:17:39 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20google=20application=20credentials=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/gradle.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 32d1963..6e66e47 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -39,7 +39,15 @@ jobs: cd ./src/main/resources touch ./keystore.p12 echo "${{ secrets.KEYSTORE }}" | base64 -d > ./keystore.p12 + shell: bash + - name: google application credentials + run: | + cd ./src/main/resources + touch ./credentials.json + echo "${{ secrets.GOOGLE_APPLICATION_CREDENTIALS}}" > ./credentials.json + shell: bash + - name: Grant execute permission for gradlew run: chmod +x gradlew