Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/server-prod-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:

- name: Make application.yml
run: |
echo "${{ secrets.APPLICATION_YML }}" > ./server/resources/application.yml
mkdir -p ./server/config
echo "${{ secrets.APPLICATION_YML }}" > ./server/config/application.yml

- name: Deploy with Docker Compose
run: |
Expand Down
2 changes: 1 addition & 1 deletion server/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
- TZ=Asia/Seoul
- PROFILES=${PROFILES:?PROFILES environment variable is not set}
volumes:
- ./resources/application.yml:/app/config/application.yml:ro
- ./server/config/application.yml:/app/config/application.yml:ro
restart: always


Expand Down