Skip to content

Commit

Permalink
[fix #147] 서버 버그 수정 (#148)
Browse files Browse the repository at this point in the history
* fix : 포트 충돌 버그 수정

* fix : 포트 충돌 버그 수정

* fix : 포트 충돌 버그 수정

* fix : 포트 충돌 버그 수정

* fix : 포트 충돌 버그 수정
  • Loading branch information
dlswns2480 authored Aug 28, 2024
1 parent da72900 commit 90002fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/api-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- feature/db-config
- main
- develop
- fix/#147

env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
Expand Down Expand Up @@ -46,8 +47,6 @@ jobs:
echo "${{ secrets.APPLICATION_CORE }}" > ./application/src/main/resources/application-core.yml
mkdir -p ./adapters/in-web/src/main/resources
echo "${{ secrets.APPLICATION_IN_WEB_YML }}" > ./application/src/main/resources/application-in-web.yml
mkdir -p ./adapters/in-batch/src/main/resources
echo "${{ secrets.APPLICATION_IN_BATCH }}" > ./application/src/main/resources/application-in-batch.yml
- name: Build with Gradle
run: ./gradlew :entry:web:build --no-daemon
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/batch-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
- develop
- fix/#147
paths:
- 'adapters/in-batch/**'

Expand Down Expand Up @@ -46,7 +47,7 @@ jobs:
mkdir -p ./application/src/main/resources
echo "${{ secrets.APPLICATION_CORE }}" > ./application/src/main/resources/application-core.yml
mkdir -p ./adapters/in-batch/src/main/resources
echo "${{ secrets.APPLICATION_IN_BATCH_YML }}" > ./application/src/main/resources/application-in-batch.yml
echo "${{ secrets.APPLICATION_IN_BATCH_YML }}" > ./adapters/in-batch/src/main/resources/application-in-batch.yml
- name: Build with Gradle
run: ./gradlew :entry:batch:build --no-daemon
Expand Down

0 comments on commit 90002fa

Please sign in to comment.