Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy for PROD - 도메인주소 이전 #328

Merged
merged 2 commits into from
Nov 12, 2023
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
4 changes: 3 additions & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v3

#jdk 세팅
- name: Set up JDK 17
uses: actions/setup-java@v2
Expand Down Expand Up @@ -59,7 +61,7 @@ jobs:

#test를 포함한 프로젝트 빌드
- name: Build With Gradle
run: ./gradlew bootjar
run: ./gradlew bootJar

- name: Make a zip file
run: zip -r ./$GITHUB_SHA.zip .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ class WebConfig (
"http://localhost:8080",
"http://localhost:3000",
"https://duaily.net",
"https://dev.duaily.net"
"https://dev.duaily.net",
"https://dev.jmhouse.org",
"https://jmhouse.org"
)
.allowedMethods(
HttpMethod.GET.name,
Expand Down