From b3f468c58329bb7f647c702c03972de784357a9b Mon Sep 17 00:00:00 2001 From: Hwangseoeun Date: Mon, 1 Dec 2025 18:08:54 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20ci/cd=20=EB=8F=99=EC=9E=91=20?= =?UTF-8?q?=EC=8B=9C=20fcm=20=ED=82=A4=20=EC=83=9D=EC=84=B1=20=EB=AA=85?= =?UTF-8?q?=EB=A0=B9=EC=96=B4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 013a83c..5893675 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -37,7 +37,7 @@ jobs: - name: Setup Firebase service key run: | mkdir -p src/main/resources/firebase - echo ${{ secrets.FIREBASE_SERVICE_KEY_BASE64_ENCODE }} | base64 -d > src/main/resources/firebase/petlog-firebase-key.json + echo ${{ secrets.FIREBASE_SERVICE_KEY_BASE64_ENCODE }} | base64 --decode > src/main/resources/firebase/petlog-firebase-key.json - name: Build with gradle run: ./gradlew bootJar -Pspring.profiles.active=dev --info