Skip to content

Commit

Permalink
[FEAT] Dev-CD에 fire-base.json파일 생성 여부 체크 로직 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Hong0329 authored May 20, 2024
1 parent 0ad21f0 commit 145e449
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/Dev-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@ jobs:
echo "${{ secrets.FIRE_BASE_DEV }}" > src/main/resources/fire-base.json
working-directory: ${{ env.working-directory }}

- name: fire-base.json 파일 확인
run: |
if [ -f "src/main/resources/fire-base.json" ]; then
echo "fire-base.json 파일이 존재합니다."
cat src/main/resources/fire-base.json
else
echo "fire-base.json 파일이 존재하지 않습니다."
exit 1
fi
working-directory: ${{ env.working-directory }}

- name: 빌드
run: |
chmod +x gradlew
Expand Down

0 comments on commit 145e449

Please sign in to comment.