Skip to content

Commit

Permalink
feat: 설정파일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jimin3263 committed Jul 18, 2024
1 parent de6b104 commit 7223132
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/api-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew

- name: Create config file
run: |
mkdir -p ./adapters/out-persistence/src/main/resources
echo "${{ secrets.OUT_PERSISTENCE_YML }}" > ./adapters/out-persistence/src/main/resources/application-out-persistence.yml
mkdir -p ./adapters/out-web/src/main/resources
echo "${{ secrets.OUT_WEB_GOOGLE }}" > ./adapters/out-web/src/main/resources/google-services.json
mkdir -p ./application/src/main/resources
echo "${{ secrets.APPLICATION_CORE }}" > ./application/src/main/resources/application-core.yml
- name: Build with Gradle
run: ./gradlew :entry:web:build --no-daemon

Expand Down

0 comments on commit 7223132

Please sign in to comment.