From f5057709c0e42094575b81972c240991e4267274 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: Mon, 23 Sep 2024 23:52:28 +0900 Subject: [PATCH] fix: deploy.yml --- .github/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 15ae053..90aa494 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -61,7 +61,9 @@ jobs: cloud.aws.storage.bucket: ${{ secrets.S3_BUCKET }} - name: Set Firebase key file - run: echo "${{ secrets.FIREBASE_KEY }}" > dodam-application/dodam-rest-api/src/main/resources/dodamdodam-firebase-key.json + 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 - name: Build with Gradle run: ./gradlew :dodam-application:dodam-rest-api:build -x test --parallel