From cd37a0ef16090b8ff164cf942f07700d75bc28c0 Mon Sep 17 00:00:00 2001 From: dgjinsu Date: Sun, 3 Dec 2023 23:45:49 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20firebase.json=20echo=20=EB=A1=9C?= =?UTF-8?q?=EC=A7=81=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index daf9003..ed4a79c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,10 +18,17 @@ jobs: java-version: '17' distribution: 'temurin' +# - name: Create Firebase JSON file +# run: | +# mkdir -p resources/firebase +# echo "${{ secrets.JIKGONG_FIREBASE }}" > ./src/main/resources/firebase/jikgong-firebase.json + - name: Create Firebase JSON file + uses: actions/checkout@v3 run: | - mkdir -p resources/firebase - echo "${{ secrets.JIKGONG_FIREBASE }}" > resources/firebase/jikgong-firebase.json + touch ./src/main/resources/firebase/jikgong-firebase.json + echo "${{ secrets.JIKGONG_FIREBASE }}" > ./src/main/resources/firebase/jikgong-firebase.json + cat ./src/main/resources/firebase/jikgong-firebase.json - name: Run chmod to make graldew executable