From 6eb13f81c235efc3283309059b0a0c776764d9a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=8F=99=EC=B0=AC?= <129833370+dongchandev@users.noreply.github.com> Date: Tue, 24 Sep 2024 00:54:46 +0900 Subject: [PATCH] fix: deploy.yml --- .github/workflows/deploy.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7bd5259c..9592a8d2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -62,9 +62,8 @@ jobs: - name: Set Firebase key file run: | - touch ./dodam-application/dodam-rest-api/src/main/resources/dodamdodam-firebase-key.json - echo "${{ secrets.FIREBASE_KEY }}" > ./dodam-application/dodam-rest-api/src/main/resources/dodamdodam-firebase-key.json - chmod 777 ./dodam-application/dodam-rest-api/src/main/resources/dodamdodam-firebase-key.json + echo "${{ secrets.FIREBASE_KEY }}" | sed 's/\\n/\ + /g' > ./dodam-application/dodam-rest-api/src/main/resources/dodamdodam-firebase-key.json - name: Build with Gradle run: ./gradlew :dodam-application:dodam-rest-api:build -x test --parallel