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] 운영서버 v1.0.0 배포 #225

Merged
merged 2 commits into from
Feb 27, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/dev-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
distribution: 'corretto'
java-version: '17'

- name: application.yaml 생성 및 data.sql 생성
- name: application.yml 생성 및 data.sql 생성
run: |
cd moonshot-api/src/main/resources
echo "${{ secrets.DEV_APPLICATION }}" > ./application-dev.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
distribution: 'corretto'
java-version: '17'

- name: application.yaml 작성
- name: application.yml 작성
run: |
cd moonshot-api/src/main/resources
echo "${{ secrets.DEV-APPLICATION }}" > ./application-dev.yml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prod-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
distribution: 'corretto'
java-version: '17'

- name: application.yaml 생성 및 data.sql 생성
- name: application.yml 생성 및 data.sql 생성
run: |
cd moonshot-api/src/main/resources
echo "${{ secrets.APPLICATION }}" > ./application-deploy.yaml
Expand All @@ -45,7 +45,7 @@ jobs:
docker push teammoonshot/server

prod-cd:
needs: deploy-ci
needs: prod-ci
runs-on: ubuntu-22.04

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prod-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
distribution: 'corretto'
java-version: '17'

- name: application.yaml 작성
- name: application.yml 작성
run: |
cd moonshot-api/src/main/resources
echo "${{ secrets.APPLICATION }}" > ./application-deploy.yml
Expand Down
Loading