From 2a5a3c202c87f7f5b0d949504c6f50ab90b58693 Mon Sep 17 00:00:00 2001 From: hyeseon Date: Sun, 27 Oct 2024 15:46:48 +0900 Subject: [PATCH] =?UTF-8?q?[mod]=20#312=20google-services=20json=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/winey-cd.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/winey-cd.yml b/.github/workflows/winey-cd.yml index 47a7bfd4..e780ebc3 100644 --- a/.github/workflows/winey-cd.yml +++ b/.github/workflows/winey-cd.yml @@ -43,10 +43,13 @@ jobs: echo "keyPassword=$KEY_PASSWORD" >> ./local.properties echo "storePassword=$STORE_PASSWORD" >> ./local.properties - - name: Generate google-services.json - run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' | base64 --d > ./app/google-services.json + - name: Create Google Services JSON File + env: + GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }} + run: echo $GOOGLE_SERVICES_JSON > ./app/google-services.json + - # PR 제목에서 release v*.*.* 형식의 버전을 추출 + # PR 제목에서 release v*.*.* 형식의 버전을 추출 - name: Extract Version Name run: echo "##[set-output name=version;]v$(echo '${{ github.event.pull_request.title }}' | grep -oP 'release v\K[0-9]+\.[0-9]+\.[0-9]+')" id: extract_version